0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-03 11:18:56 +02:00

Add a github actions job recording success of other jobs. (#10430)

This commit is contained in:
Richard van der Hoff 2021-07-20 11:41:19 +01:00 committed by GitHub
parent a743bf4694
commit 97c8ae90f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View file

@ -344,3 +344,15 @@ jobs:
env:
COMPLEMENT_BASE_IMAGE: complement-synapse:latest
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
View file

@ -0,0 +1 @@
Add a github actions job recording success of other jobs.