-
Notifications
You must be signed in to change notification settings - Fork 1
chore: v0.23 release gate governanceを追加 #594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| AGENTS.md @YoneRai12 | ||
| .github/workflows/* @YoneRai12 | ||
| clients/cli/yonerai_cli/services/realtime_sync_client_service.py @YoneRai12 | ||
| docs/contracts/ @YoneRai12 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -113,11 +113,17 @@ jobs: | |
| PY | ||
|
|
||
| - name: Run Release Gate | ||
| env: | ||
| GH_TOKEN: ${{ secrets.YONERAI_RELEASE_GATE_TOKEN || github.token }} | ||
| run: | | ||
| python scripts/release_gate.py \ | ||
| --tag "${GITHUB_REF_NAME}" \ | ||
| --artifact "${PRODUCT_NAME}-${ORA_VERSION}.zip" \ | ||
| --github-prerelease "${ORA_PRERELEASE}" | ||
| python scripts/yonerai_release_gate.py \ | ||
| --release-issue 592 \ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This workflow runs for every pushed tag matching Useful? React with 👍 / 👎. |
||
| --release-notes "docs/releases/${ORA_VERSION}.md" \ | ||
| --fail-on-blockers | ||
|
|
||
| - name: Create GitHub Release | ||
| uses: softprops/action-gh-release@v1 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding the new test file to the
release-gatejob only exercises unit tests; the job below still invokesscripts/release_gate.pyand never executesscripts/yonerai_release_gate.py --fail-on-blockers, and the tag release workflow is likewise unchanged. As a result, the new #552/cross-repo blocker checks andrelease_godecision can be completely bypassed during CI/release, so a v0.23 release path can pass without consulting this governance gate.Useful? React with 👍 / 👎.