mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
fix(ci): remove env var in workflow
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
8010ee1f71
commit
fea4656035
1 changed files with 1 additions and 2 deletions
3
.github/workflows/frontend-e2e-tests.yml
vendored
3
.github/workflows/frontend-e2e-tests.yml
vendored
|
@ -18,14 +18,13 @@ permissions:
|
|||
env:
|
||||
NODE_VERSION: 18
|
||||
HEAD_COMMIT_HASH: "${{ !!github.event.pull_request && github.event.pull_request.head.sha || github.sha }}"
|
||||
HEAD_REF: "${{ !!github.event.pull_request && github.event.pull_request.head.label || github.ref }}"
|
||||
|
||||
defaults:
|
||||
run:
|
||||
working-directory: frontend
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ env.HEAD_REF }}-${{ github.event_name }}
|
||||
group: ${{ github.workflow }}-${{ !!github.event.pull_request && github.event.pull_request.head.label || github.ref }}-${{ github.event_name }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
Loading…
Reference in a new issue