Update Homebrew Tap #37
This file contains 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
name: Update Homebrew Tap | |
permissions: | |
contents: write | |
pull-requests: write | |
on: | |
workflow_dispatch: # Manual workflow trigger | |
schedule: | |
- cron: 00 15 * * 4 | |
jobs: | |
update: | |
name: Update formula | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Execute codegen | |
run: ./hack/update-taps.sh | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: auto/update-release | |
title: "Update kn formula to new version" | |
commit-message: "Update kn formula to new version" | |
delete-branch: true | |
body: | | |
Generated by `./hack/update-taps.sh` to update formulas for a new release. |