Skip to content

Commit 2a56d39

Browse files
fix: date: unbound variable
1 parent 23f4772 commit 2a56d39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/upcoming_api_releases.sh

+1-1
Original file line numberDiff line numberDiff 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
5252
done
5353

.github/workflows/api-versions-reminder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: 'Send a Slack Notification for upcoming release of API versions'
33
on:
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

88
jobs:
99
send-changelog-report:

0 commit comments

Comments
 (0)