Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/governance-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ jobs:
ref: ${{ github.sha }}
- name: Check file permissions
run: |
find . -type f -perm /111 -name "*.sh" | head -10
find . -type f -perm /111 -name "*.sh" | head -20
continue-on-error: true
# advisory: informational only; repos can opt into blocking locally
- name: Check TODO/FIXME
Expand All @@ -895,7 +895,7 @@ jobs:
# advisory: informational only; repos can opt into blocking locally
- name: Check for large files
run: |
find . -type f -size +1M -not -path "./.git/*" | head -10
find . -type f -size +1M -not -path "./.git/*" | head -20
continue-on-error: true
# advisory: informational only; repos can opt into blocking locally
- name: EditorConfig check
Expand Down Expand Up @@ -958,7 +958,7 @@ jobs:
echo "::error::Missing Expires field"
exit 1
fi
EXPIRES=$(grep "^Expires:" "$SECTXT" | cut -d: -f2- | tr -d ' ' | head -1)
EXPIRES=$(grep "^Expires:" "$SECTXT" | cut -d: -f2- | tr -d ' ' | head -2)
if date -d "$EXPIRES" > /dev/null 2>&1; then
DAYS=$(( ($(date -d "$EXPIRES" +%s) - $(date +%s)) / 86400 ))
if [ $DAYS -lt 0 ]; then
Expand Down
7 changes: 7 additions & 0 deletions .governance-allowlist
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# .governance-allowlist — banned-language migration ledger
# One glob per line; '#' comments; blank lines ignored.
# Every path listed individually so NEW banned files still fail the gate.
# Inventory 2026-08-06: 3 python files (governance tooling + fixtures).
a2ml/actions/validate/validate-manifest-dialect.py
scripts/check-workflow-duplicate-keys.py
scripts/relock-sha-keys.py
Loading