Skip to content

use test repository #11

use test repository

use test repository #11

Workflow file for this run

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 ${{ steps.app-token.outputs.token }}@github.com:grafana/grafana-test
env:
HOMEBREW_DEVELOPER: "1"
HOMEBREW_GITHUB_API_TOKEN: ${{ steps.app-token.outputs.token }}
- name: Update Homebrew formula
# if: 'steps.latest_release.outputs.release_id == github.event.release.id'
uses: Homebrew/actions/bump-packages@master
with:
# Required, custom GitHub access token with the 'public_repo' and 'workflow' scopes
token: ${{ steps.app-token.outputs.token }}
formulae: grafana/grafana-test/alloy
fork: false