Skip to content

Commit b2ee89e

Browse files
chore(hygiene): purge committed build artifacts + fix Secret Scanner startup_failure (#341)
## What Three mechanical hygiene items from the 2026-07-07 ground-truth health check: 1. **Closes #267** — removes the 369 `.zig-cache-global/` build-artifact files that were committed against the (already present) gitignore rule. 2. **OCaml artifacts** — removes committed `.cmi`/`.cmo` compiled artifacts and gitignores the pattern. The `.ml`/`.mll`/`.mly` **sources are untouched** — their keep-or-delete call is #265 (owner decision, unchanged). 3. **Secret Scanner startup_failure** — `secret-scanner.yml` (and `mirror.yml`) still pinned the standards reusable at `d135b05`, the known-broken estate SHA; every push to main has startup_failure'd since. Repinned to `d7c2271`, matching all other workflows (PR #328's repin missed these two). This PR's own checks demonstrate the fix. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent d2bd75f commit b2ee89e

379 files changed

Lines changed: 7 additions & 122 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ permissions:
1111

1212
jobs:
1313
mirror:
14-
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
14+
uses: hyperpolymath/standards/.github/workflows/mirror-reusable.yml@d7c22711e830e1f383846472f6e9b99debdb201e
1515
secrets: inherit

.github/workflows/secret-scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ permissions:
1515

1616
jobs:
1717
scan:
18-
uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236
18+
uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@d7c22711e830e1f383846472f6e9b99debdb201e
1919
secrets: inherit

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,8 @@ deps/
9292
.elixir_ls/
9393
.cache/
9494
dist/
95+
96+
# OCaml build artifacts (issue #265 sources pending; artifacts never belong)
97+
*.cmi
98+
*.cmo
99+
*.cmx

.zig-cache-global/b/87f6089f6466e02607681b715c77e280/builtin.zig

Lines changed: 0 additions & 120 deletions
This file was deleted.
-35.2 KB
Binary file not shown.
-63.2 KB
Binary file not shown.
-444 KB
Binary file not shown.
-1.49 KB
Binary file not shown.
-5.71 KB
Binary file not shown.
-3.15 KB
Binary file not shown.

0 commit comments

Comments
 (0)