ci: centralized roadmap-#35 sweeper (one workflow, one secret)#480
Merged
Conversation
Replaces the need to install a per-repo add-to-project workflow + secret in every repo. A single scheduled workflow here sweeps recently-touched issues & PRs from every owned repo (except son-shared: idaptik/burble/rattlescript/ vcl-ut) into the Hyperpolymath Master Roadmap (#35). - One secret (reuses the existing ADD_TO_PROJECT_PAT here); nothing to place in other repos. GITHUB_TOKEN can't read other repos, so cross-repo reads use the PAT. addProjectV2ItemById is idempotent, so overlapping windows are safe. - No external actions (pure gh) => no SHA-pin / allowlist friction. - Runs every 30 min + workflow_dispatch for on-demand. - LIMITATION (deliberate, to finish in a focused follow-up): with the PAT's current project+public_repo scope this covers PUBLIC repos only; private repos need the PAT widened to `repo` (still one secret, one place). The run logs the scanned-repo count so the gap is visible. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
🔍 Hypatia Security ScanFindings: 44 issues detected
View findings[
{
"reason": "Issue in add-to-roadmap.yml",
"type": "missing_timeout_minutes",
"file": "add-to-roadmap.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "Repository has 5 non-main remote branch(es). Policy: single main branch only.",
"type": "GS007",
"file": ".",
"action": "delete_remote_branches",
"rule_module": "git_state",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/workflow_audit/missing_timeout_minutes -- Hypatia workflow_audit: missing_timeout_minutes -- 0 day(s) old",
"type": "CSA001",
"file": "add-to-roadmap.yml",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "src/ui/gossamer/README.adoc",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "scripts/ci-tools/Cargo.toml",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "scripts/bench-tools/Cargo.toml",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "ffi/zig/README.adoc",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "docs/reports/audit/audit-2026-04-15-post.md",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "docs/integration/github-registry.adoc",
"action": "review",
"rule_module": "code_scanning_alerts",
"severity": "medium"
},
{
"reason": "Code scanning (Hypatia): hypatia/structural_drift/SD022 -- Hypatia structural_drift: SD022 -- 11 day(s) old",
"type": "CSA001",
"file": "docs/integration/github-registry.adoc",
"action": "review",
"rule_module": "code_scanning_alerts",
"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.
ci: centralized roadmap-#35 sweeper (one workflow, one secret)
Replaces the need to install a per-repo add-to-project workflow + secret in
every repo. A single scheduled workflow here sweeps recently-touched issues &
PRs from every owned repo (except son-shared: idaptik/burble/rattlescript/
vcl-ut) into the Hyperpolymath Master Roadmap (#35).
other repos. GITHUB_TOKEN can't read other repos, so cross-repo reads use the
PAT. addProjectV2ItemById is idempotent, so overlapping windows are safe.
current project+public_repo scope this covers PUBLIC repos only; private repos
need the PAT widened to
repo(still one secret, one place). The run logs thescanned-repo count so the gap is visible.
Co-Authored-By: Claude Opus 4.8 (1M context) noreply@anthropic.com