-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,15 @@ jobs: | |
app-id: ${{ secrets.ALLOYBOT_APP_ID }} | ||
private-key: ${{ secrets.ALLOYBOT_PRIVATE_KEY }} | ||
owner: grafana | ||
repositories: alloy,homebrew-grafana | ||
repositories: alloy,homebrew-grafana-test | ||
|
||
- name: Setup Git | ||
run: | | ||
git config --global user.name "grafana-alloybot[bot]" | ||
git config --global user.email "879451+grafana-alloybot[bot]@users.noreply.github.com" | ||
gh auth setup-git | ||
env: | ||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | ||
|
||
- name: Get latest release | ||
uses: rez0n/actions-github-release@main | ||
|
@@ -32,13 +40,21 @@ jobs: | |
uses: Homebrew/actions/setup-homebrew@master | ||
|
||
- name: Tap Grafana formula repository | ||
run: brew tap grafana/grafana | ||
run: brew tap grafana/grafana-test [email protected]:grafana/homebrew-grafana-test | ||
env: | ||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | ||
|
||
- 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' | ||
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/alloy | ||
fork: false | ||
run: | | ||
brew bump-formula-pr \ | ||
--no-browse \ | ||
--no-audit \ | ||
--no-fork \ | ||
--url https://github.com/grafana/alloy/archive/refs/tags/v1.1.1.tar.gz \ | ||
grafana/grafana-test/alloy | ||
env: | ||
HOMEBREW_DEVELOPER: "1" | ||
HOMEBREW_GITHUB_API_TOKEN: ${{ steps.app-token.outputs.token }} | ||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} |