summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2024-06-17 13:21:51 +0200
committerGitHub <noreply@github.com>2024-06-17 11:21:51 +0000
commit12d7303707583c27c251176246876f263f4e1de2 (patch)
treecd5ce3e29fdb888356c0c76b542a30280e0acd0e
parentAutomatically apply SQL for inconsistent sequence (#17305) (diff)
downloadsynapse-12d7303707583c27c251176246876f263f4e1de2.tar.xz
Use the release branch for sytest in release-branch PRs (#17306)
-rw-r--r--.github/workflows/tests.yml3
-rw-r--r--changelog.d/17306.misc1
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 20afe311fe..cdd881fbe1 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -479,6 +479,9 @@ jobs:
       volumes:
         - ${{ github.workspace }}:/src
       env:
+        # If this is a pull request to a release branch, use that branch as default branch for sytest, else use develop
+        # This works because the release script always create a branch on the sytest repo with the same name as the release branch
+        SYTEST_DEFAULT_BRANCH: ${{ startsWith(github.base_ref, 'release-') && github.base_ref || 'develop' }}
         SYTEST_BRANCH: ${{ github.head_ref }}
         POSTGRES: ${{ matrix.job.postgres && 1}}
         MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') || '' }}
diff --git a/changelog.d/17306.misc b/changelog.d/17306.misc
new file mode 100644
index 0000000000..88ada5f671
--- /dev/null
+++ b/changelog.d/17306.misc
@@ -0,0 +1 @@
+Use the release branch for sytest in release-branch PRs.