Skip to content

Commit a30e608

Browse files
authored
Add korthout/backport-action
1 parent 78a0faf commit a30e608

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/backport.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Backport merged pull request
2+
on:
3+
pull_request:
4+
types: [closed]
5+
permissions:
6+
contents: write # so it can comment
7+
pull-requests: write # so it can create pull requests
8+
jobs:
9+
backport:
10+
name: Backport pull request
11+
runs-on: ubuntu-latest
12+
# Don't run on closed unmerged pull requests
13+
if: github.event.pull_request.merged
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Create backport pull requests
17+
uses: korthout/backport-action@v1

0 commit comments

Comments
 (0)