forked from MirrorHub/synapse
Add a github actions job recording success of other jobs. (#10430)
This commit is contained in:
parent
a743bf4694
commit
97c8ae90f7
2 changed files with 13 additions and 0 deletions
12
.github/workflows/tests.yml
vendored
12
.github/workflows/tests.yml
vendored
|
@ -344,3 +344,15 @@ jobs:
|
||||||
env:
|
env:
|
||||||
COMPLEMENT_BASE_IMAGE: complement-synapse:latest
|
COMPLEMENT_BASE_IMAGE: complement-synapse:latest
|
||||||
working-directory: complement
|
working-directory: complement
|
||||||
|
|
||||||
|
# a job which marks all the other jobs as complete, thus allowing PRs to be merged.
|
||||||
|
tests-done:
|
||||||
|
needs:
|
||||||
|
- trial
|
||||||
|
- trial-olddeps
|
||||||
|
- sytest
|
||||||
|
- portdb
|
||||||
|
- complement
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: "true"
|
1
changelog.d/10430.misc
Normal file
1
changelog.d/10430.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Add a github actions job recording success of other jobs.
|
Loading…
Reference in a new issue