Skip to content

Commit

Permalink
Fix second typo in release-reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiewigmore committed Feb 29, 2024
1 parent 59c3165 commit 63fcfe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildpack/.github/workflows/release-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "It's the second Thursday of the month"
echo "bool=true" >> "${GITHUB_OUTPUT}"
# fourth thursday of the month will always be between day 21 and 28 (inclusive)
if [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]]; then
elif [[ "$day_of_month" -ge "22" && "$day_of_month" -le "28" ]]; then
echo "It's the fourth Thursday of the month"
echo "bool=true" >> "${GITHUB_OUTPUT}"
else
Expand Down

0 comments on commit 63fcfe3

Please sign in to comment.