From 5152db24235e3afdf81ae5c331c5f4eed5aa9af9 Mon Sep 17 00:00:00 2001 From: Techassi Date: Mon, 17 Aug 2026 19:25:37 +0200 Subject: [PATCH] ci(template): Fix if condition in profile selection Welp, that happened -.- --- 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 d00f61bf..918d8090 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 [ "$EVENT_NAME" == "schedule" ]; then echo "PROFILE=schedule" | tee -a "$GITHUB_OUTPUT" else echo "PROFILE=${PROFILE_INPUT}" | tee -a "$GITHUB_OUTPUT"