Skip to content

fix: update wfctl tap via pull request#2

Merged
intel352 merged 2 commits into
mainfrom
fix/wfctl-update-pr-automation
Jun 7, 2026
Merged

fix: update wfctl tap via pull request#2
intel352 merged 2 commits into
mainfrom
fix/wfctl-update-pr-automation

Conversation

@intel352
Copy link
Copy Markdown
Contributor

@intel352 intel352 commented Jun 7, 2026

Summary

  • update wfctl formula to v0.75.1 using published release checksums
  • change update-wfctl automation to open/update a PR instead of pushing directly to protected main
  • pin checkout to the current v6.0.3 SHA

Verification

  • ruby -e 'require "yaml"; YAML.load_file(".github/workflows/update-wfctl.yml")'
  • ruby -c Formula/wfctl.rb

Fixes the failed v0.75.1 tap dispatch from GoCodeAlone/workflow release run 27090934271.

Copilot AI review requested due to automatic review settings June 7, 2026 11:40
@intel352 intel352 merged commit 2c5efae into main Jun 7, 2026
4 checks passed
@intel352 intel352 deleted the fix/wfctl-update-pr-automation branch June 7, 2026 11:41
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.rb to 0.75.1 and update platform SHA256 checksums.
  • Update .github/workflows/update-wfctl.yml to 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/checkout v6.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}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants