-
-
Notifications
You must be signed in to change notification settings - Fork 7
37 lines (35 loc) · 809 Bytes
/
completion.yml
File metadata and controls
37 lines (35 loc) · 809 Bytes
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
name: Completion
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
check_suite:
types:
- completed
status: {}
jobs:
maybe_merge:
name: Merge
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: automerge
uses: 'pascalgn/automerge-action@135f0bdb927d9807b5446f7ca9ecc2c51de03c4a'
env:
GITHUB_TOKEN: '${{ secrets.GH_PAT }}'
MERGE_LABELS: Ready to merge
MERGE_METHOD: rebase
MERGE_COMMIT_MESSAGE: 'Merge ${{ github.ref }} into master'
MERGE_RETRIES: 10
MERGE_RETRY_SLEEP: 30000