From 7835d1eee5cee16137c8b4816c2dd4c7af846c73 Mon Sep 17 00:00:00 2001 From: arezaii Date: Fri, 20 Dec 2024 11:11:07 -0700 Subject: [PATCH] Update monitor-homebrew.yml --- .github/workflows/monitor-homebrew.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/monitor-homebrew.yml b/.github/workflows/monitor-homebrew.yml index 3df51523f990..f0235dafeb0f 100644 --- a/.github/workflows/monitor-homebrew.yml +++ b/.github/workflows/monitor-homebrew.yml @@ -29,14 +29,14 @@ jobs: run: | git config --global user.email "github-action-bot@email.com" git config --global user.name "github action" - git checkout -b update-chapel-main + git checkout -b update-chapel-homebrew-release mv hb_master_chapel.rb util/packaging/homebrew/chapel-release.rb - git add chapel-main.rb + git add util/packaging/homebrew/chapel-release.rb git commit -m "Update chapel-main.rb with changes from chapel.rb" - git push --set-upstream origin update-chapel-main + git push --set-upstream origin update-chapel-homebrew-release echo "Homebrew has updated the formula!" - name: create pull request - run: gh pr create -B main -H update-chapel-main --title 'Update our copy of the released Homebrew formula' --body 'Created by Github action' + run: gh pr create -B main -H update-chapel-homebrew-release --title 'Update our copy of the released Homebrew formula' --body 'Created by Github action' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}