Fix Gitea checks after kit application
Some checks failed
Build / verify (push) Failing after 9m23s
Codex Template Compliance / template-compliance (push) Successful in 7s

This commit is contained in:
MrSphay
2026-05-03 22:39:10 +02:00
parent c02413813b
commit b4552f76fd
3 changed files with 18 additions and 4 deletions

View File

@@ -21,7 +21,6 @@ jobs:
missing=0
required_files=(
"AGENTS.md"
".codex/project.md"
"README.md"
)
@@ -32,6 +31,11 @@ jobs:
"docs/agent-handoff.md"
)
if [ ! -f "AGENTS.md" ] && [ ! -f "CLAUDE.md" ]; then
echo "Missing required Codex agent file: AGENTS.md or CLAUDE.md"
missing=1
fi
for file in "${required_files[@]}"; do
if [ ! -f "$file" ]; then
echo "Missing required Codex file: $file"