forked from chapel-lang/chapel
-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 additions
and
4 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 |
---|---|---|
|
@@ -29,14 +29,14 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
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 }} | ||
|