We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a0faf commit a30e608Copy full SHA for a30e608
.github/workflows/backport.yml
@@ -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