Skip to content

Commit

Permalink
Fix assignee user param usage & allow force pushing the release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
luongvo committed Nov 24, 2023
1 parent 592c081 commit 04ad8e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_release_pr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ runs:
# Create the release branch
git checkout -b $HEAD_BRANCH
git push origin $HEAD_BRANCH
git push origin $HEAD_BRANCH -f
# Create the pull request
gh pr create \
--base ${{ inputs.base_branch }} \
--head $HEAD_BRANCH \
--assignee ${{ inputs.version }} \
--assignee ${{ inputs.assignee }} \
--title "Release - ${{ inputs.version }}" \
--label 'type : release' \
--milestone $MILESTONE \
Expand Down

0 comments on commit 04ad8e6

Please sign in to comment.