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

@@ -38,7 +38,7 @@ jobs:
for path in "${placeholder_paths[@]}"; do
[ -e "$path" ] || continue
if grep -RInE --exclude-dir=.git "$placeholder_pattern" "$path"; then
if grep -RInE --exclude-dir=.git --exclude='release-dry-run.yml' --exclude='template-compliance.yml' "$placeholder_pattern" "$path"; then
echo "Unresolved template placeholders found."
missing=1
fi