Skip to content

Commit 0b45d1a

Browse files
authored
Merge pull request python-pillow#60 from nulano/mergify-config
Mergify test - Add all successful report jobs for GHA
2 parents 5b6c6fc + be282c0 commit 0b45d1a

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

.github/workflows/test-docker.yml

+8
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,11 @@ jobs:
6161
with:
6262
flags: GHA_Docker
6363
name: ${{ matrix.docker }}
64+
65+
success:
66+
needs: build
67+
runs-on: ubuntu-latest
68+
name: Docker Test Successful
69+
steps:
70+
- name: Success
71+
run: echo Docker Test Successful

.github/workflows/test-windows.yml

+8
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,11 @@ jobs:
267267
bash <(curl -s https://codecov.io/bash) -F GHA_Windows
268268
env:
269269
CODECOV_NAME: ${{ matrix.name }}
270+
271+
success:
272+
needs: [build, msys]
273+
runs-on: ubuntu-latest
274+
name: Windows Test Successful
275+
steps:
276+
- name: Success
277+
run: echo Windows Test Successful

.github/workflows/test.yml

+8
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,11 @@ jobs:
107107
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
108108
env:
109109
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}
110+
111+
success:
112+
needs: build
113+
runs-on: ubuntu-latest
114+
name: Test Successful
115+
steps:
116+
- name: Success
117+
run: echo Test Successful

0 commit comments

Comments
 (0)