GHA: reintroduce an env var for `$GITHUB_HEAD_REF` (#10659)
This should ensure GHA runs synapse against the same-named sytest branch
This commit is contained in:
parent
b3590614da
commit
f455b0e420
|
@ -192,6 +192,7 @@ jobs:
|
|||
volumes:
|
||||
- ${{ github.workspace }}:/src
|
||||
env:
|
||||
SYTEST_BRANCH: ${{ github.head_ref }}
|
||||
POSTGRES: ${{ matrix.postgres && 1}}
|
||||
MULTI_POSTGRES: ${{ (matrix.postgres == 'multi-postgres') && 1}}
|
||||
WORKERS: ${{ matrix.workers && 1 }}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fix GitHub Actions config so we can run sytest on synapse from parallel branches.
|
Loading…
Reference in New Issue