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 <ffjlabo@gmail.com>
Signed-off-by: t-kikuc <tkikuchi07f@gmail.com>
  • Loading branch information
ffjlabo authored and t-kikuc committed Jul 29, 2024
1 parent 0e9bf2e commit 245e940
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 "pipecd.dev@gmail.com"
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 245e940

Please sign in to comment.