Skip to content

Commit

Permalink
Update update-formula.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeadie authored Sep 24, 2024
1 parent 83b0d03 commit 9ac6886
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-formula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4
- name: Compute Formula
shell: bash
run: ./update-version ${github.event.inputs.version}
run: ./update-version ${{ github.event.inputs.version}}

- name: Create PR
run: |
Expand All @@ -29,9 +29,9 @@ jobs:
if [[ $(git diff --exit-code Formula/**.rb) ]]; then
git add Formula/**.rb
git commit -m "Update Formula for version ${github.event.inputs.version}"
git commit -m "Update Formula for version ${{ github.event.inputs.version}}
git push origin acknowledgements/${GITHUB_RUN_ID}
gh pr create --title "Update Formula for version ${github.event.inputs.version}" --body "This PR updates the Formula for version ${github.event.inputs.version}" --base trunk --head update-formula/${GITHUB_RUN_ID}
gh pr create --title "Update Formula for version ${{ github.event.inputs.version}}" --body "This PR updates the Formula for version ${{ github.event.inputs.version}}" --base trunk --head update-formula/${GITHUB_RUN_ID}
else
echo "No changes detected"
fi
Expand Down

0 comments on commit 9ac6886

Please sign in to comment.