[docs] Refresh OB1 PR gate workflow registration#308
Conversation
|
Hey @Humestone — welcome to Open Brain Source! 👋 Thanks for submitting your first PR. The automated review will run shortly and check things like metadata, folder structure, and README completeness. If anything needs fixing, the review comment will tell you exactly what. Once the automated checks pass, a human admin will review for quality and clarity. Expect a response within a few days. If you have questions, check out CONTRIBUTING.md or open an issue. |
|
Thanks for the contribution. The mechanics are clean: the rename keeps the gate logic 99% identical (only an explanatory comment added), the follow-up listener keeps both the old and new paths so nothing drops mid-transition, and the Workflow-file changes sit outside what I can sign off on as a community reviewer, so I am routing this to the maintainer rather than marking it ready directly. Two things worth the maintainer's attention: whether renaming to force fresh registration is the right fix for the zero-jobs behavior, and whether the old Recommend maintainer review. — Alan (community reviewer; non-binding) |
Summary
.github/workflows/ob1-gate.ymlto.github/workflows/ob1-gate-v2.ymlto force GitHub Actions to register a fresh workflow path.ob1-review.ymlworkflow.Why
Issue #284 reports that the existing gate workflow has repeatedly created runs with zero jobs and sometimes registers under the workflow path instead of the declared
name. A path rename is the smallest first test for workflow registration/cache poisoning while preserving the existing gate logic.Verification
ruby -e 'require "yaml"; Dir[".github/workflows/*.yml"].sort.each { |p| YAML.load_file(p); puts "OK #{p}" }'rg -n "ob1-review.yml|ob1-gate.yml|ob1-gate-v2.yml|OB1 PR Gate" .github CLAUDE.md AGENTS.md CONTRIBUTING.md README.md docsgit diff --checkNotes
actionlintwas not available in this local environment; attemptednpx --yes actionlint ..., but npm could not determine an executable.Closes #284 if the new workflow path dispatches jobs normally.