diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-07-20 11:41:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-20 11:41:19 +0100 |
commit | 97c8ae90f7996c3d6039ce137905e87987c1be98 (patch) | |
tree | f085bdf4ce5bc84a4748c23f27c5807735c662a1 /.github/workflows/tests.yml | |
parent | Port the ThirdPartyEventRules module interface to the new generic interface (... (diff) | |
download | synapse-97c8ae90f7996c3d6039ce137905e87987c1be98.tar.xz |
Add a github actions job recording success of other jobs. (#10430)
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 505bac1308..cef4439477 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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" \ No newline at end of file |