Skip to content

v1.1.1

v1.1.1 #2

Workflow file for this run

name: bump-formula-pr
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
- 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: Update Homebrew formula
if: 'steps.latest_release.outputs.release_id == github.event.release.id'
uses: dawidd6/action-homebrew-bump-formula@v3
with:
# Required, custom GitHub access token with the 'public_repo' and 'workflow' scopes
token: ${{ steps.app-token.outputs.token }}
# Optional, defaults to homebrew/core
tap: grafana/grafana
# Formula name, required
formula: alloy
# Optional, will be determined automatically
tag: ${{github.ref}}
# Optional, will be determined automatically
revision: ${{github.sha}}
# Optional, if don't want to check for already open PRs
force: false # true