From eb2e25313e00a9d440c5bdb71d65ee1a65435417 Mon Sep 17 00:00:00 2001 From: Techassi Date: Mon, 31 Aug 2026 09:40:00 +0200 Subject: [PATCH] ci(template): Use correct env var in integration test workflow --- template/.github/workflows/integration-test-profile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/.github/workflows/integration-test-profile.yaml b/template/.github/workflows/integration-test-profile.yaml index 41891685..a4c55ca9 100644 --- a/template/.github/workflows/integration-test-profile.yaml +++ b/template/.github/workflows/integration-test-profile.yaml @@ -32,7 +32,7 @@ jobs: PROFILE_INPUT: ${{ inputs.test-profile }} shell: bash run: | - if [ "$EVENT_NAME" == "schedule" ]; then + if [ "$GITHUB_EVENT_NAME" == "schedule" ]; then echo "PROFILE=schedule" | tee -a "$GITHUB_OUTPUT" else echo "PROFILE=${PROFILE_INPUT}" | tee -a "$GITHUB_OUTPUT"