Skip to content

Commit

Permalink
make branch unique per workflow run
Browse files Browse the repository at this point in the history
  • Loading branch information
andreykaipov committed Dec 17, 2024
1 parent 7b821a0 commit 9591e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/resume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
git checkout -b "$branch"
git add .
git commit -m "${{ needs.build.outputs.msg }}"
git push -fu origin auto/resume
git push -fu origin auto/resume-${{ github.run_number }}
if gh pr edit "${{ env.branch }}" -b "${{ env.body }}" -t "${{ env.title}}"; then
gh pr reopen "${{ env.branch }}"
else
Expand Down

0 comments on commit 9591e6c

Please sign in to comment.