mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Merge pull request #4931 from hugovk/add-mergify-config
Add Mergify config
This commit is contained in:
commit
6106a7c6e0
14
.github/mergify.yml
vendored
Normal file
14
.github/mergify.yml
vendored
Normal 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
|
8
.github/workflows/test-docker.yml
vendored
8
.github/workflows/test-docker.yml
vendored
|
@ -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
|
||||||
|
|
8
.github/workflows/test-windows.yml
vendored
8
.github/workflows/test-windows.yml
vendored
|
@ -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
|
||||||
|
|
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user