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: branches:
- main - main
- master - master
- codex/production-intelligence-terminal
workflow_dispatch: workflow_dispatch:
jobs: jobs:
@@ -38,7 +39,11 @@ jobs:
for path in "${placeholder_paths[@]}"; do for path in "${placeholder_paths[@]}"; do
[ -e "$path" ] || continue [ -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." echo "Unresolved template placeholders found."
missing=1 missing=1
fi fi

View File

@@ -5,6 +5,7 @@ on:
branches: branches:
- main - main
- master - master
- codex/production-intelligence-terminal
pull_request: pull_request:
workflow_dispatch: workflow_dispatch:
@@ -58,7 +59,11 @@ jobs:
for path in "${paths[@]}"; do for path in "${paths[@]}"; do
[ -e "$path" ] || continue [ -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 found=1
fi fi
done done

9
CHANGELOG.md Normal file
View File

@@ -0,0 +1,9 @@
# Changelog
## 2.0.0 - 2026-05-16
- Prepared Intelligence Terminal as a Docker-first Crucix fork for Dockge and Pangolin deployments.
- Added Gitea Actions workflows for image builds, release dry runs, security scans, dependency checks, template compliance, and repository cleanup.
- Documented agent context, release handoff, security review notes, and the Gitea Registry publishing target.
- Hardened runtime defaults for container operation, including disabled browser auto-open, persistent `/app/runs`, and health endpoints.
- Expanded configurable LLM provider support and source health diagnostics for intelligence sweeps.