Skip to content

fix(ci): repoint the deleted validate-actions at the live ecosystem repos - #39

Merged
hyperpolymath merged 1 commit into
mainfrom
fix/repoint-dead-validate-actions
Jul 29, 2026
Merged

fix(ci): repoint the deleted validate-actions at the live ecosystem repos#39
hyperpolymath merged 1 commit into
mainfrom
fix/repoint-dead-validate-actions

Conversation

@hyperpolymath

Copy link
Copy Markdown
Owner

hyperpolymath/a2ml-validate-action and k9-validate-action are deleted (verified 404). An unresolvable uses: ref produces no check run at all — not a red one — so Validate A2ML manifests and Validate K9 contracts could never report, and any ruleset requiring them was unsatisfiable. The repo looked green while the check had simply never run.

The actions moved: a2ml-ecosystem/validate-action and k9-ecosystem/validate-action. Repointed rather than vendored — vendoring would create one drifting copy per repo.

Measured scope: 69 repos, 135 references. SHAs are those already proven green in the-nash-equilibrium#83.

Verified: no dead refs remain; every touched workflow still parses.

🤖 Generated with Claude Code

…epos
hyperpolymath/a2ml-validate-action and k9-validate-action are DELETED
(verified 404). An unresolvable uses: ref produces NO check run at all -- not a
red one -- so 'Validate A2ML manifests' and 'Validate K9 contracts' could never
report, and any ruleset requiring them was unsatisfiable. Repos looked green
while the check had simply never run.
The actions moved rather than died:
hyperpolymath/a2ml-ecosystem/validate-action
hyperpolymath/k9-ecosystem/validate-action
Repointed, not vendored. The estate handover proposed vendoring the scripts into
every consumer; that would create one copy per repo to drift, which the same
document names as this estate's most recurring failure mode. Measured scope:
69 repos, 135 references -- not the ~272 estimated.
SHAs are those already proven green in the-nash-equilibrium#83; both verified to
resolve and to contain validate-action/action.yml at that exact ref.
Verified: no dead refs remain, and every touched workflow still parses.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@sonarqubecloud

Copy link
Copy Markdown

@github-actions

Copy link
Copy Markdown

🔍 Hypatia Security Scan

Findings: 63 issues detected

SeverityCount
🔴 Critical1
🟠 High22
🟡 Medium40

⚠️Action Required: Critical security issues found!

View findings
[
{
"reason": "codeql.yml lists `language: javascript-typescript` but the repo has no source files in any CodeQL-scannable language. The analyze job will exit 'no source files' on every run. Switch the matrix to `actions` (which scans workflow files — every repo has those).",
"type": "codeql_language_matrix_mismatch",
"file": "codeql.yml",
"action": "switch_codeql_matrix_to_actions",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Issue in boj-build.yml",
"type": "missing_timeout_minutes",
"file": "boj-build.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in casket-pages.yml",
"type": "missing_timeout_minutes",
"file": "casket-pages.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in casket-pages.yml",
"type": "missing_timeout_minutes",
"file": "casket-pages.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in codeql.yml",
"type": "missing_timeout_minutes",
"file": "codeql.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in dependabot-automerge.yml",
"type": "missing_timeout_minutes",
"file": "dependabot-automerge.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in dogfood-gate.yml",
"type": "missing_timeout_minutes",
"file": "dogfood-gate.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in dogfood-gate.yml",
"type": "missing_timeout_minutes",
"file": "dogfood-gate.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in dogfood-gate.yml",
"type": "missing_timeout_minutes",
"file": "dogfood-gate.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in dogfood-gate.yml",
"type": "missing_timeout_minutes",
"file": "dogfood-gate.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
}
]

Powered by Hypatia Neurosymbolic CI/CD Intelligence

Comment thread.github/workflows/dogfood-gate.yml
@gitar-bot

gitar-botBot commented Jul 29, 2026

Copy link
Copy Markdown

Note

Automatic reviews are paused because your trial's included automatic processing has been used for this period. Upgrade now, or comment "Gitar review" to run a review anytime.
Learn more

Code Review✅ Approved1 resolved / 1 findings

Updates GitHub Actions workflow references to point to live ecosystem repos, but the new action references keep the hyperpolymath/ prefix which contradicts the stated organization move.

✅ 1 resolved
Bug: New action refs keep hyperpolymath/ prefix, contradicting stated move

📄 .github/workflows/dogfood-gate.yml:41📄 .github/workflows/dogfood-gate.yml:89
The PR description says the actions moved to a2ml-ecosystem/validate-action and k9-ecosystem/validate-action (a new org + validate-action repo), but the diff writes hyperpolymath/a2ml-ecosystem/validate-action@... and hyperpolymath/k9-ecosystem/validate-action@.... With the hyperpolymath/ owner retained, GitHub parses these as owner=hyperpolymath, repo=a2ml-ecosystem/k9-ecosystem, path=validate-action (a monorepo subdirectory), NOT the org form the description intends. If the intended target is the new org, the correct ref is a2ml-ecosystem/validate-action@<sha> (no hyperpolymath/). If the ref does not resolve, the uses: produces no check run at all — reintroducing the exact silent-green failure this PR sets out to fix. Confirm which location is real: if org, drop the hyperpolymath/ prefix; if it is genuinely a subdirectory in the hyperpolymath/a2ml-ecosystem monorepo, correct the PR description and verify validate-action/action.yml exists at the pinned SHAs.

Options

Display: compact → Showing less information.

Comment with these commands to change the behavior for this request:

Compact
gitar display:verbose 

Was this helpful? React with 👍 / 👎 | Gitar

@hyperpolymath
hyperpolymath merged commit 95b2d67 into mainJul 29, 2026
22 of 26 checks passed
@hyperpolymath
hyperpolymath deleted the fix/repoint-dead-validate-actions branch July 29, 2026 02:29
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@hyperpolymath