Initial commit
CI / test (push) Canceled after 0s

This commit is contained in:
2026-09-12 22:22:17 +02:00
commit 904d14b64c
314 changed files with 31884 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
name: CLA
on:
pull_request:
types: [opened, edited, reopened, synchronize]
permissions: {}
jobs:
acceptance:
name: Verify CLA acceptance
runs-on: ubuntu-latest
steps:
- name: Check pull request declaration
env:
PR_BODY: ${{ github.event.pull_request.body }}
run: |
declaration='^- \[[xX]\] \*\*I have read and agree to the Gardomatic Contributor License Agreement,'
if ! grep -Eq "$declaration" <<< "$PR_BODY"; then
echo "The pull request author must accept CLA.md using the checkbox in the pull request template."
exit 1
fi