From 5445c5455bccc069411c3f26ef04b70bfffc292c Mon Sep 17 00:00:00 2001 From: Adrian Macneil Date: Tue, 13 Feb 2024 19:29:57 -0800 Subject: [PATCH] Use individual fork to submit homebrew updates (#1064) ### Public-Facing Changes None ### Description Use @foxglovebot's "personal" fork of homebrew to release CLI versions, rather than the @foxglove org's fork. This allows homebrew automation to amend the PR. Fixes https://github.com/foxglove/mcap/issues/1063 --- .github/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fcb4c32da5..e35accfb66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -459,16 +459,10 @@ jobs: id: extract-version run: | printf "::set-output name=%s::%s\n" version-number "${GITHUB_REF#refs/tags/releases/mcap-cli/v}" - - uses: mislav/bump-homebrew-formula-action@b3327118b2153c82da63fd9cbf58942146ee99f0 + - uses: mislav/bump-homebrew-formula-action@5a3f2e95b18e8647880bffc858ab1a71da42af4c with: + # Note: Don't override push-to (see: https://github.com/foxglove/mcap/issues/1063) formula-name: mcap - push-to: foxglove/homebrew-core - commit-message: | - {{formulaName}} ${{ steps.extract-version.outputs.version-number }} - - Created by https://github.com/mislav/bump-homebrew-formula-action - - cc @foxglove/mcap-cli-maintainers env: COMMITTER_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }}