ci: harden gitea workflow reruns
Some checks failed
Release Dry Run / release-dry-run (push) Failing after 5s
Codex Template Compliance / template-compliance (push) Successful in 5s
Build / test-and-image (push) Successful in 52s

This commit is contained in:
2026-05-17 12:52:12 +02:00
parent 0559481656
commit b309bd690e
3 changed files with 11 additions and 5 deletions

View File

@@ -58,7 +58,7 @@ jobs:
for path in "${paths[@]}"; do
[ -e "$path" ] || continue
if grep -RInE --exclude-dir=.git "$pattern" "$path"; then
if grep -RInE --exclude-dir=.git --exclude='release-dry-run.yml' --exclude='template-compliance.yml' "$pattern" "$path"; then
found=1
fi
done