We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23cac0d commit 7644877Copy full SHA for 7644877
.github/workflows/sync.yml
@@ -0,0 +1,24 @@
1
+name: Automatic backport/sync action
2
+
3
+on:
4
+ pull_request_target:
5
+ types: ["labeled", "closed"]
6
7
+jobs:
8
+ backport:
9
+ name: Backport/sync PR
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Backport Action
13
+ uses: sorenlouv/[email protected]
14
+ with:
15
+ github_token: ${{ secrets.RABONEKO_BACKPORT_GITHUB_TOKEN }}
16
+ auto_backport_label_prefix: sync-
17
18
+ - name: Info log
19
+ if: ${{ success() }}
20
+ run: cat ~/.backport/backport.info.log
21
22
+ - name: Debug log
23
+ if: ${{ failure() }}
24
+ run: cat ~/.backport/backport.debug.log
0 commit comments