use test repository #19
Workflow file for this run
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: bump-formula-pr | |
on: | |
push: | |
branches: | |
- "fix-homebrew-automation" | |
# on: | |
# release: | |
# types: [released] | |
jobs: | |
homebrew-grafana: | |
name: homebrew-grafana | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ secrets.ALLOYBOT_APP_ID }} | |
private-key: ${{ secrets.ALLOYBOT_PRIVATE_KEY }} | |
owner: grafana | |
repositories: alloy,homebrew-grafana-test | |
- name: Get latest release | |
uses: rez0n/actions-github-release@main | |
id: latest_release | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
repository: "${{ github.repository }}" | |
type: "stable" | |
- name: Setup Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Tap Grafana formula repository | |
run: brew tap grafana/grafana-test | |
- name: Update Homebrew formula | |
# github.event.release.tag_name will have the tag name. | |
# if: 'steps.latest_release.outputs.release_id == github.event.release.id' | |
run: | | |
brew bump-formula-pr \ | |
--no-browse \ | |
--no-audit \ | |
--no-fork \ | |
--tag v1.1.1 \ | |
--revision 2687a2d854ea1bf39e60ff99b8aeaf3d270874dd \ | |
grafana/grafana-test/alloy | |
env: | |
HOMEBREW_DEVELOPER: "1" | |
HOMEBREW_GITHUB_API_TOKEN: ${{ steps.app-token.outputs.token }} |