-
Notifications
You must be signed in to change notification settings - Fork 6
ci: align release draft workflow with rokt-widget pattern #34
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
base: main
Are you sure you want to change the base?
Changes from all commits
be2adda
e45d1ee
47703cf
b59f14d
e6a52d5
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 |
|---|---|---|
|
|
@@ -2,9 +2,13 @@ name: CI | |
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| - workstation/* | ||
|
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. PR-specific jobs lack guards for new push triggerMedium Severity The new Reviewed by Cursor Bugbot for commit e6a52d5. Configure here. |
||
|
|
||
| env: | ||
| XCODE_VERSION: "16.4" | ||
| XCODE_VERSION: "26.2" | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
|
|
||


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.
Missing
chore/release*push trigger defeats PR's stated purposeHigh Severity
The
push.branchestrigger addsmainandworkstation/*but is missingchore/release*, which is the branch pattern thatpeter-evans/create-pull-requestindraft-release-publish.ymlcreates (viabranch: chore/release-${{ steps.bump-version.outputs.new_version }}). The PR description explicitly states the intent is to addchore/release*to bypass GitHub's restriction onGITHUB_TOKEN-created PRs not triggeringpull_requestevents, but this pattern was omitted from the implementation. CI will still not fire on release PRs.Reviewed by Cursor Bugbot for commit e6a52d5. Configure here.