17 lines
501 B
YAML
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
|