Skip to content

Commit

Permalink
Add user info for cherry-pick (#5080)
Browse files Browse the repository at this point in the history
Signed-off-by: Yoshiki Fujikane <[email protected]>
  • Loading branch information
ffjlabo authored Jul 26, 2024
1 parent 98093d2 commit 69f4842
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cherry_pick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: make a cherry-pick PR
run: make release/pick branch=${{ inputs.releaseBranch }} pull_numbers="$(gh pr list --label cherry-pick --label ${{ inputs.version }} --state merged | awk '{print $1}' | sort | paste -sd ' ' -)"
run: |
git config user.name "pipecd-bot"
git config user.email "[email protected]"
make release/pick branch=${{ inputs.releaseBranch }} pull_numbers="$(gh pr list --label cherry-pick --label ${{ inputs.version }} --state merged | awk '{print $1}' | sort | paste -sd ' ' -)"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 69f4842

Please sign in to comment.