Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Nov 25, 2024
1 parent 1ba6c42 commit fc560ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unreviewedPRReminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fc560ce

Please sign in to comment.