Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
---
 Signed-off-by: github-actions <[email protected]>

Signed-off-by: github-actions <[email protected]>
  • Loading branch information
github-actions committed Nov 29, 2024
1 parent df05878 commit 73dfbdd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/postrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,10 @@ jobs:
git add .
git commit -s -m "Post release ${{ github.event.inputs.V1 }}"
git push origin post-release --force
if gh pr view -B master --head post-release > /dev/null 2>&1; then
echo "Pull request already exists."
if gh pr view -B master --head post-release ; then
echo "Pull request already exists.";
else
gh pr create -f -B master
gh pr create -f -B master;
fi
echo done

0 comments on commit 73dfbdd

Please sign in to comment.