Skip to content

Commit

Permalink
testing 5
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy_xero committed Oct 7, 2024
1 parent 16c5639 commit 2aece14
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/update-yaml-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,13 @@ jobs:

- name: Verify PR is merged
run: |
gh pr view 674 --json state
prState = gh pr view 674 --json state --jq '.state'
if ["$prState" == "MERGED"]
echo "PR 674 is merged"
else
echo "PR 674 is not merged"
fi
env:
GH_TOKEN: ${{steps.get_access_token.outputs.result}}

0 comments on commit 2aece14

Please sign in to comment.