ci: fix agent kit compliance checks
All checks were successful
Release Dry Run / release-dry-run (push) Successful in 9s
Codex Template Compliance / template-compliance (push) Successful in 6s
Build / test-and-image (push) Successful in 50s

This commit is contained in:
MrSphay
2026-05-17 03:41:34 +02:00
parent 0559481656
commit f3c9331718
3 changed files with 21 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ on:
branches:
- main
- master
- codex/production-intelligence-terminal
workflow_dispatch:
jobs:
@@ -38,7 +39,11 @@ 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

View File

@@ -5,6 +5,7 @@ on:
branches:
- main
- master
- codex/production-intelligence-terminal
pull_request:
workflow_dispatch:
@@ -58,7 +59,11 @@ 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