Skip to content

Commit

Permalink
Add homebrew-bump-debug workflow (cli#8114)
Browse files Browse the repository at this point in the history
  • Loading branch information
williammartin authored Oct 3, 2023
1 parent b775a90 commit 49ec484
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/homebrew-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: homebrew-bump-debug

permissions:
contents: write

on:
workflow_dispatch:
inputs:
tag_name:
required: true
type: string

jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Bump homebrew-core formula
uses: mislav/bump-homebrew-formula-action@v3
if: inputs.environment == 'production' && !contains(inputs.tag_name, '-')
with:
formula-name: gh
tag-name: ${{ inputs.tag_name }}
env:
COMMITTER_TOKEN: ${{ secrets.HOMEBREW_PR_PAT }}

0 comments on commit 49ec484

Please sign in to comment.