Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates github-config #889

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
day_of_month=$(date +%d)
# Check if it's the second or fourth Thursday of the month
# second thursday of the month will always be between day 8 and 14 (inclusive)
if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]; then
if [[ "$day_of_month" -ge "8" && "$day_of_month" -le "14" ]]; then
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
if [[ "$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
Loading