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:
2026-01-31 18:45:24 +01:00
parent 9e5e0512ce
commit 8155707ba1
2 changed files with 64 additions and 0 deletions
+16
View File
@@ -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