From 663c28e51526d4918cdb50d3971a6e98611ff83c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= Date: Tue, 30 Jan 2024 08:30:02 +0100 Subject: [PATCH] Fix empty run-id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- .github/actions/notify_e2e_failure/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/notify_e2e_failure/action.yml b/.github/actions/notify_e2e_failure/action.yml index f0982a7ec..7e38a317b 100644 --- a/.github/actions/notify_e2e_failure/action.yml +++ b/.github/actions/notify_e2e_failure/action.yml @@ -76,7 +76,7 @@ runs: $(queryGen metadata.github.attestation-variant "${{ inputs.attestationVariant }}") $(queryGen metadata.github.cluster-creation "${{ inputs.clusterCreation }}") $(queryGen metadata.github.e2e-test-payload "${{ steps.encode-uri-component.outputs.string }}") - (query:(match_phrase:(metadata.github.run-id:${run_id}))) + (query:(match_phrase:(metadata.github.run-id:${{ github.run_id }}))) ))" | tr -d "\t\n ") # URL construction @@ -105,6 +105,7 @@ runs: fields: | workflow: ${{ github.workflow }} kubernetesVersion: ${{ inputs.kubernetesVersion }} + cloudProvider: ${{ inputs.provider }} attestationVariant: ${{ inputs.attestationVariant }} clusterCreation: ${{ inputs.clusterCreation }} test: ${{ inputs.test }}