File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ for version_date in ${version_dates}; do
4747 # Check if the date is within 3 weeks (21 days)
4848 if [[ " ${diff_in_days} " -ge 0 && " ${diff_in_days} " -le 21 ]]; then
4949 # Add the date to the list if within 3 weeks
50- version_dates_within_3_weeks+=(" ${date } " )
50+ version_dates_within_3_weeks+=(" ${version_date } " )
5151 fi
5252done
5353
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: 'Send a Slack Notification for upcoming release of API versions'
33on :
44 workflow_dispatch : # Allow manual triggering
55 schedule :
6- - cron : ' 0 9 * * * ' # Run once a day at 09:00 UTC
6+ - cron : ' 0 9 * * 1-5 ' # Run once a day at 09:00 UTC between Monday and Friday
77
88jobs :
99 send-changelog-report :
You can’t perform that action at this time.
0 commit comments