Skip to content

Commit 681fd08

Browse files
author
Sophie Wigmore
authored
Fix second typo in release-reminder (#1005)
1 parent cf79a4e commit 681fd08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "It's the second Thursday of the month"
2727
echo "bool=true" >> "${GITHUB_OUTPUT}"
2828
# fourth thursday of the month will always be between day 21 and 28 (inclusive)
29-
if [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]]; then
29+
elif [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]]; then
3030
echo "It's the fourth Thursday of the month"
3131
echo "bool=true" >> "${GITHUB_OUTPUT}"
3232
else

0 commit comments

Comments
 (0)