fix(ci): remove placeholder entry blocking Dependabot#24
Merged
Conversation
This dependabot.yml carries GitHub's unedited placeholder alongside a real,
correct entry:
- package-ecosystem: "" # See documentation for possible values
An empty package-ecosystem fails schema validation and GitHub rejects the WHOLE
file, so the real github-actions entry has never run either.
MEASURED: the three estate repos in exactly this state (blocky-writer, jtv-lang,
lcb-website) have 0 Dependabot PRs between them, while comparable repos with
valid configs have 7-63 (aerie 7, standards 8, affinescript 16, hypatia 63).
All three do have .github/workflows/ to update.
Removing the stub leaves the real entry intact and unblocks it. Any entry that
lacked a groups: block gets one, so an ecosystem bump arrives as ONE PR rather
than one per dependency.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
🔍 Hypatia Security ScanFindings: 58 issues detected
View findings[
{
"reason": "Issue in scorecard.yml",
"type": "missing_workflow",
"file": "scorecard.yml",
"action": "create",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Action actions/checkout@v4 needs attention",
"type": "unpinned_action",
"file": "pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action actions/checkout@v4 needs attention",
"type": "unpinned_action",
"file": "pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action actions/upload-pages-artifact@v3 needs attention",
"type": "unpinned_action",
"file": "pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Action actions/deploy-pages@v4 needs attention",
"type": "unpinned_action",
"file": "pages.yml",
"action": "pin_sha",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Issue in ci.yml",
"type": "npermissions_typo",
"file": "ci.yml",
"action": "fix_typo",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"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"
}
]Powered by Hypatia Neurosymbolic CI/CD Intelligence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This
dependabot.ymlcarries GitHub's unedited placeholder alongside a real, correct entry:An empty
package-ecosystemfails Dependabot's schema validation, and GitHub rejects the whole file — not just the bad entry. So the realgithub-actionsentry has never run either.Measured, not assumed
The three estate repos in exactly this state have 0 Dependabot PRs between them, while comparable repos with valid configs have plenty:
blocky-writerjtv-langlcb-websiteaeriestandardsaffinescripthypatiaAll three do have a populated
.github/workflows/, so there is genuinely something forgithub-actionsto update.Fix
Excise the stub block. The real entry is untouched and becomes live. Where an entry lacked a
groups:block it gains one, so an ecosystem-wide bump arrives as one PR instead of one per dependency.🤖 Generated with Claude Code