Use the release branch for sytest in release-branch PRs (#17306)

This commit is contained in:
Quentin Gliech 2024-06-17 13:21:51 +02:00 committed by GitHub
parent a3cb244755
commit 12d7303707
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -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') || '' }}

1
changelog.d/17306.misc Normal file
View file

@ -0,0 +1 @@
Use the release branch for sytest in release-branch PRs.