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
10 changes: 10 additions & 0 deletions .github/workflows/governance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,17 @@ on:
pull_request:
workflow_dispatch:

# A called reusable workflow cannot request MORE permissions than its caller
# grants — if it does, the run is rejected before any job starts
# (startup_failure, zero jobs, no check run to inspect).
#
# standards@0ced540e ("chore: estate-wide security compliance", 2026-07-26)
# added `actions: read` to governance-reusable.yml's own permissions block.
# Because this caller pins the reusable at @main rather than a SHA, that change
# arrived immediately and broke Governance here. `actions: read` is mirrored
# below to match.
permissions:
actions: read
contents: read

jobs:
Expand Down
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,26 @@ deps/
*.tmp
Thumbs.db
dist/

# Secrets — never commit these
.env
.env.*
*.key
*.pem
secrets/

# Agent scratch and worktrees
.claude/

# SQLite artifacts (the Zig bridge links libsqlite3)
*.db
*.db-journal
*.db-shm
*.db-wal

# Editors
*.swp
*.swo
*.bak
.idea/
.vscode/
Loading
Loading