-
Notifications
You must be signed in to change notification settings - Fork 137
42 lines (38 loc) · 1.19 KB
/
backport.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Backport PR
on:
pull_request_target:
branches:
- main
types:
- labeled
- closed
jobs:
backport:
if: |
github.event.pull_request.merged == true
&& contains(github.event.pull_request.labels.*.name, 'auto-backport')
&& (
(github.event.action == 'labeled' && github.event.label.name == 'auto-backport')
|| (github.event.action == 'closed')
)
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
with:
repository: 'swiftype/kibana-github-actions'
ref: main
path: ./actions
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Run Backport
uses: ./actions/backport
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
approver_token: ${{ secrets.REPO_SCOPED_TOKEN }}
auto_approve: 'true'
commit_user: elastic
commit_email: [email protected]
auto_merge: 'true'
auto_merge_method: 'squash'
manual_backport_command_template: 'backport --pr %pullNumber% --autoMerge --autoMergeMethod squash'