chore(ci, quality): introduce PR Guard workflow to detect hardcoded dependency versions
- Added `check-no-hardcoded-versions.sh` script to enforce centralized dependency version management. - Configured GitHub Actions workflow (`pr-guard.yml`) to run the script on pull requests.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
name: PR Guard
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "**" ]
|
||||
|
||||
jobs:
|
||||
no-hardcoded-versions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run hardcoded versions check
|
||||
shell: bash
|
||||
run: |
|
||||
chmod +x config/quality/check-no-hardcoded-versions.sh
|
||||
config/quality/check-no-hardcoded-versions.sh
|
||||
Reference in New Issue
Block a user