-
Notifications
You must be signed in to change notification settings - Fork 4
chore: scope v4 branch workflows to v4 #52
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 |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ name: Run Release Please | |
| on: | ||
| push: | ||
| branches: | ||
| - v3 | ||
| - v4 | ||
|
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. Release-please workflow drops v3 branch trigger entirelyHigh Severity The push trigger replaces Reviewed by Cursor Bugbot for commit f3c7249. Configure here.
Author
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 is a per-branch workflow file. It lives on the v4 branch, and on push events GitHub Actions reads the workflow file from the branch being pushed to. I've updated the PR description to reduce confusion. |
||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
|
|
@@ -15,4 +15,4 @@ jobs: | |
| steps: | ||
| - uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0 | ||
| with: | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| target-branch: v3 | ||
| target-branch: v4 | ||
|
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. Hardcoded target-branch contradicts stated dynamic intentLow Severity The PR description explicitly states Reviewed by Cursor Bugbot for commit d49d3d2. Configure here.
Author
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. Same as above re: per-branch workflows and updating the PR description. |
||


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.
CI workflow drops v3 branch instead of adding v4
High Severity
The
pushandpull_requestbranch filters replacev3withv4instead of addingv4alongsidev3. This removes CI coverage for the existingv3branch entirely. The PR description explicitly states the intent is to "addv4to the branch lists," andcheck-go-versions.ymlcorrectly uses["v3", "v4"]— but herev3is dropped. The branches list needs to include both'v3'and'v4'.Additional Locations (1)
.github/workflows/ci.yml#L7-L8Reviewed by Cursor Bugbot for commit f3c7249. Configure here.