fix: update wfctl tap via pull request#2
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the wfctl Homebrew formula to v0.75.1 and adjusts the update-wfctl GitHub Actions automation to open/update a pull request (instead of pushing directly to protected main), with actions/checkout pinned to a specific commit SHA.
Changes:
- Bump
Formula/wfctl.rbto0.75.1and update platform SHA256 checksums. - Update
.github/workflows/update-wfctl.ymlto create/update an “automation/update-wfctl-*” branch, open/edit a PR, and attempt auto-merge. - Add stricter shell settings and basic checksum presence assertions; pin checkout to the commit for
actions/checkoutv6.0.3.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
Formula/wfctl.rb |
Updates wfctl version and per-platform SHA256 values for the new release. |
.github/workflows/update-wfctl.yml |
Shifts automation from direct pushes to PR-based updates with a pinned checkout action and stricter scripting. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+21
to
25
| set -euo pipefail | ||
|
|
||
| # Strip v prefix for formula version | ||
| FORMULA_VERSION="${VERSION#v}" | ||
|
|
Comment on lines
+101
to
+105
| git checkout -B "$BRANCH" | ||
| git add Formula/wfctl.rb | ||
| git diff --cached --quiet && echo "No changes" && exit 0 | ||
| git commit -m "chore: update wfctl to ${{ github.event.client_payload.version }}" | ||
| git push | ||
| git commit -m "chore: update wfctl to ${VERSION}" | ||
| git push --force-with-lease --set-upstream origin "$BRANCH" |
Comment on lines
+96
to
+98
| set -euo pipefail | ||
|
|
||
| BRANCH="automation/update-wfctl-${VERSION}" |
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.
Summary
Verification
Fixes the failed v0.75.1 tap dispatch from GoCodeAlone/workflow release run 27090934271.