Skip to content

Commit c991e93

Browse files
committed
chore: simplify internal-file ignore and gate rules
1 parent e8618dc commit c991e93

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/release-gate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Confirm no internal-only files are tracked
5151
run: |
5252
set -e
53-
INTERNAL_PATTERNS='^(findings\.md|progress\.md|task_plan\.md|gemini\.md|CLAUDE\.md|architecture/|\.tmp/)'
53+
INTERNAL_PATTERNS='^(findings\.md|progress\.md|task_plan\.md|architecture/|\.tmp/)'
5454
tracked_internal=$(git ls-files | grep -E "$INTERNAL_PATTERNS" || true)
5555
if [ -n "$tracked_internal" ]; then
5656
echo "::error::Internal-only files are tracked by git. They must remain gitignored."

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ temp/
7272
/findings.md
7373
/progress.md
7474
/task_plan.md
75-
/gemini.md
76-
/CLAUDE.md
7775
/docs/superpowers/
7876

7977
# Internal-only operational notes and SOPs (never public)

docs/release-checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ everything that needs human attention.
1919
refreshed via `pnpm check:api-contract:update` and the docs table
2020
row was added or updated in the same commit.
2121
- [ ] No internal-only file is tracked (the workflow checks this; run
22-
`git ls-files | grep -E 'findings|progress|task_plan|gemini|CLAUDE|architecture/|\\.tmp/'`
22+
`git ls-files | grep -E 'findings|progress|task_plan|architecture/|\\.tmp/'`
2323
to mirror it locally).
2424

2525
## 2. SDK Build and Tests

0 commit comments

Comments
 (0)