Skip to content

Commit

Permalink
Fix auto-label cert-blocker issue workflow (infra) (#1572)
Browse files Browse the repository at this point in the history
Fix auto-label cert-blocker issue workflow

The issue template outputs a different string than expected.

Modifying the workflow to match this.
  • Loading branch information
pieqq authored Nov 1, 2024
1 parent 781a1c8 commit 086d1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/label-cert-blocker-issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 086d1dc

Please sign in to comment.