Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Nov 25, 2024
1 parent 039f2fd commit 650c864
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/unreviewedPRReminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,22 @@ jobs:
if [[ "$PR_ISDRAFT" == "true" ]]; then
echo "skipping this PR cause it is in draft mode"
continue
fi
fi
# Continue loop if the PR has the label "WIP"
if echo "$PR_LABELS" | grep -q "WIP"; then
# Continue loop if the PR has the label "WIP"
if echo "$PR_LABELS" | grep -q "WIP"; then
echo "skipping this PR cause it is labeled with 'WIP'"
continue
fi
fi
# Continue loop if the PR has the label "waitForAudit"
if echo "$PR_LABELS" | grep -q "waitForAudit"; then
# 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
fi
# Continue loop if the PR has the label "waitForBackend"
if echo "$PR_LABELS" | grep -q "waitForBackend"; then
# 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 650c864

Please sign in to comment.