Skip to content

Commit

Permalink
Fix workflow to get the correct PR title
Browse files Browse the repository at this point in the history
  • Loading branch information
pskrbasu committed Feb 4, 2025
1 parent 7dcdc23 commit 7ab32e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/02-powerpipe-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -700,11 +700,11 @@ jobs:
- name: Fail if PR title does not match with version
run: |
if ${{ (steps.pr_title.outputs.PR_TITLE == env.VERSION) }} == 'true';then
if [[ "${{ steps.pr_title.outputs.PR_TITLE }}" == "Powerpipe ${{ env.VERSION }}" ]]; then
echo "Correct version"
else
echo "Incorrect version"
exit 1
echo "Incorrect version"
exit 1
fi
- name: Merge pull request to update brew formula
Expand Down

0 comments on commit 7ab32e8

Please sign in to comment.