Merge pull request #4931 from hugovk/add-mergify-config

Add Mergify config
This commit is contained in:
Andrew Murray 2020-09-28 20:06:19 +10:00 committed by GitHub
commit 6106a7c6e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 38 additions and 0 deletions

14
.github/mergify.yml vendored Normal file
View File

@ -0,0 +1,14 @@
pull_request_rules:
- name: Automatic merge
conditions:
- "#approved-reviews-by>=1"
- label=automerge
- status-success=Lint
- status-success=Test Successful
- status-success=Docker Test Successful
- status-success=Windows Test Successful
- status-success=continuous-integration/appveyor/pr
- status-success=continuous-integration/travis-ci/pr
actions:
merge:
method: merge

View File

@ -61,3 +61,11 @@ jobs:
with: with:
flags: GHA_Docker flags: GHA_Docker
name: ${{ matrix.docker }} name: ${{ matrix.docker }}
success:
needs: build
runs-on: ubuntu-latest
name: Docker Test Successful
steps:
- name: Success
run: echo Docker Test Successful

View File

@ -267,3 +267,11 @@ jobs:
bash <(curl -s https://codecov.io/bash) -F GHA_Windows bash <(curl -s https://codecov.io/bash) -F GHA_Windows
env: env:
CODECOV_NAME: ${{ matrix.name }} CODECOV_NAME: ${{ matrix.name }}
success:
needs: [build, msys]
runs-on: ubuntu-latest
name: Windows Test Successful
steps:
- name: Success
run: echo Windows Test Successful

View File

@ -107,3 +107,11 @@ jobs:
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }} run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
env: env:
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }} CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}
success:
needs: build
runs-on: ubuntu-latest
name: Test Successful
steps:
- name: Success
run: echo Test Successful