ci: fix agent kit compliance checks
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
9
CHANGELOG.md
Normal 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.
|
||||||
Reference in New Issue
Block a user