Files
meldestelle/.gitea/workflows/pr-guard.yaml
T
2026-06-02 13:32:00 +02:00

17 lines
501 B
YAML

name: PR Guard
on:
pull_request:
branches: [ "**" ]
jobs:
no-hardcoded-versions:
# Für Plan-B-Builds überspringen: Commit-Message enthält [planb]
if: ${{ !contains(gitea.event.head_commit.message, '[planb]') }}
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