File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ ANCHOR_DATE="2025-11-12"
77MEETING_LINK=" https://zoom-lfx.platform.linuxfoundation.org/meeting/92041330205?password=2f345bee-0c14-4dd5-9883-06fbc9c60581"
88CALENDAR_LINK=" https://zoom-lfx.platform.linuxfoundation.org/meetings/hiero?view=week"
99
10+ CANCELLED_DATES=(
11+ " 2025-12-24"
12+ )
13+
1014EXCLUDED_AUTHORS=(
1115 " rbair23"
1216 " nadineloepfe"
@@ -21,6 +25,14 @@ if [ "$DRY_RUN" = "true" ]; then
2125 echo " No comments will be posted."
2226fi
2327
28+ TODAY=$( date -u +" %Y-%m-%d" )
29+ for CANCELLED in " ${CANCELLED_DATES[@]} " ; do
30+ if [ " $TODAY " = " $CANCELLED " ]; then
31+ echo " Community Call cancelled on $TODAY . Exiting."
32+ exit 0
33+ fi
34+ done
35+
2436IS_MEETING_WEEK=$( python3 - << EOF
2537from datetime import date
2638d1 = date.fromisoformat("$ANCHOR_DATE ")
You can’t perform that action at this time.
0 commit comments