Skip to content

Commit be6e810

Browse files
hyperpolymathclaude
andcommitted
fix(ci): resolve 4 failing checks blocking PR #26
- ada.yml: specify -P modshells.gpr (multiple .gpr files need explicit project) - rsr-antipattern.yml: exclude tests/ from TS blocker (Deno test files) - dogfood-gate.yml: SHA-pin k9-validate-action and a2ml-validate-action - hypatia-scan.yml: fix upload-artifact SHA (was non-existent commit) - Fix SPDX headers (MPL-2.0-or-later → PMPL-1.0-or-later) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 152f19d commit be6e810

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ada.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: MPL-2.0-or-later
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
22
name: Ada (GNAT)
33

44
on:
@@ -27,4 +27,4 @@ jobs:
2727
sudo apt-get install gnat gprbuild
2828
2929
- name: Build
30-
run: gprbuild -j0 -p
30+
run: gprbuild -P modshells.gpr -j0 -p

.github/workflows/dogfood-gate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Validate A2ML manifests
4040
if: steps.detect.outputs.count > 0
41-
uses: hyperpolymath/a2ml-validate-action@main
41+
uses: hyperpolymath/a2ml-validate-action@edad26fc392d7d9fd3d02f67ef131e26a7179a72 # main
4242
with:
4343
path: '.'
4444
strict: 'false'
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: Validate K9 contracts
8888
if: steps.detect.outputs.k9_count > 0
89-
uses: hyperpolymath/k9-validate-action@main
89+
uses: hyperpolymath/k9-validate-action@66cd8fea58e9b660260d1928bea266414b535396 # main
9090
with:
9191
path: '.'
9292
strict: 'false'

.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
echo "- Medium: $MEDIUM" >> $GITHUB_STEP_SUMMARY
7777
7878
- name: Upload findings artifact
79-
uses: actions/upload-artifact@65c79d7f54e76e4e3c7a8f34db0f4ac8b515c478 # v4
79+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8080
with:
8181
name: hypatia-findings
8282
path: hypatia-findings.json

.github/workflows/rsr-antipattern.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SPDX-License-Identifier: MPL-2.0-or-later
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
22
# RSR Anti-Pattern CI Check
3-
# SPDX-License-Identifier: MPL-2.0-or-later
3+
# SPDX-License-Identifier: PMPL-1.0-or-later
44
#
55
# Enforces: No TypeScript, No Go, No Python (except SaltStack), No npm
66
# Allows: ReScript, Deno, WASM, Rust, OCaml, Haskell, Guile/Scheme
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
# Exclude bindings/deno/ - those are Deno FFI files using Deno.dlopen, not plain TypeScript
3131
# Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
32-
TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
32+
TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' | grep -v '^./tests/' || true)
3333
if [ -n "$TS_FILES" ]; then
3434
echo "❌ TypeScript files detected - use ReScript instead"
3535
echo "$TS_FILES"

0 commit comments

Comments
 (0)