mirror of https://github.com/Muryor/back_up.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
637 B
30 lines
637 B
name: automerge |
|
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: |
|
automerge: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: automerge |
|
uses: "pascalgn/automerge-action@v0.14.3" |
|
env: |
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
|
MERGE_LABELS: "automerge,!work in progress" |
|
MERGE_METHOD: "squash" |
|
MERGE_COMMIT_MESSAGE: "pull-request-title"
|
|
|