From fc560ced94d0f3539dc57af800dacc5634a88185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Bl=C3=A4cker?= Date: Mon, 25 Nov 2024 09:20:11 +0700 Subject: [PATCH] bugfix --- .github/workflows/unreviewedPRReminder.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unreviewedPRReminder.yml b/.github/workflows/unreviewedPRReminder.yml index 02ce12d8..7d4f6ebc 100644 --- a/.github/workflows/unreviewedPRReminder.yml +++ b/.github/workflows/unreviewedPRReminder.yml @@ -47,15 +47,15 @@ jobs: continue fi - # Continue loop if the PR has the label "WaitForAudit" - if echo "$PR_LABELS" | grep -q "WaitForAudit"; then - echo "skipping this PR cause it is labeled with 'WaitForAudit'" + # Continue loop if the PR has the label "waitForAudit" + if echo "$PR_LABELS" | grep -q "waitForAudit"; then + echo "skipping this PR cause it is labeled with 'waitForAudit'" continue fi - # Continue loop if the PR has the label "WaitForBackend" - if echo "$PR_LABELS" | grep -q "WaitForBackend"; then - echo "skipping this PR cause it is labeled with 'WaitForBackend'" + # Continue loop if the PR has the label "waitForBackend" + if echo "$PR_LABELS" | grep -q "waitForBackend"; then + echo "skipping this PR cause it is labeled with 'waitForBackend'" continue fi