From 086d1dc29f7fe4469e00974bd4954cd12ba42099 Mon Sep 17 00:00:00 2001 From: Pierre Equoy Date: Fri, 1 Nov 2024 14:22:50 +0100 Subject: [PATCH] Fix auto-label cert-blocker issue workflow (infra) (#1572) Fix auto-label cert-blocker issue workflow The issue template outputs a different string than expected. Modifying the workflow to match this. --- .github/workflows/label-cert-blocker-issue.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/label-cert-blocker-issue.yaml b/.github/workflows/label-cert-blocker-issue.yaml index 977ea00474..60339b3e8e 100644 --- a/.github/workflows/label-cert-blocker-issue.yaml +++ b/.github/workflows/label-cert-blocker-issue.yaml @@ -14,7 +14,7 @@ jobs: - name: Check if an issue has a ticked cert-blocker test case mark id: check_for_cert_blocker_test_case run: | - if echo "${{ github.event.issue.body }}" | grep -q "\[x\] Cert-blocker Test Case"; then + if echo "${{ github.event.issue.body }}" | grep -q "\[X\] This issue is about a test case that has the \"blocker\" certification status"; then echo "found=true" >> $GITHUB_ENV else echo "found=false" >> $GITHUB_ENV