Skip to content

Commit 63cc4bf

Browse files
Updating github-config
1 parent dd52e42 commit 63cc4bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-reminder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
day_of_month=$(date +%d)
2323
# Check if it's the second or fourth Thursday of the month
2424
# second thursday of the month will always be between day 8 and 14 (inclusive)
25-
if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]; then
25+
if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]]; then
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+
if [[ "$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)