Skip to content

Commit c226ee6

Browse files
authored
🌱 add cherry-pick workflow for pr-closed event (#1661)
Signed-off-by: David Zager <[email protected]>
1 parent 538f241 commit c226ee6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/pr-closed.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: PR Closed
2+
3+
on:
4+
pull_request_target:
5+
branches:
6+
- main
7+
types:
8+
- closed
9+
10+
jobs:
11+
cherry_pick_job:
12+
permissions:
13+
pull-requests: write
14+
contents: write
15+
if: github.event.pull_request.merged == true
16+
uses: konveyor/release-tools/.github/workflows/cherry-pick.yml@main

0 commit comments

Comments
 (0)