From fea46560354873147c77bebe1119a9bc3b76c1b7 Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Sun, 4 Dec 2022 21:06:21 +0100 Subject: [PATCH] fix(ci): remove env var in workflow Signed-off-by: Tilman Vatteroth --- .github/workflows/frontend-e2e-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/frontend-e2e-tests.yml b/.github/workflows/frontend-e2e-tests.yml index ec0f18086..42107d5a9 100644 --- a/.github/workflows/frontend-e2e-tests.yml +++ b/.github/workflows/frontend-e2e-tests.yml @@ -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: