From 1a76d2f8052b30d34ac6a14ce9f9d0e1cb708582 Mon Sep 17 00:00:00 2001 From: Silke Nodwell Date: Fri, 13 Feb 2026 09:59:32 +0000 Subject: [PATCH 1/2] Remove the pull request trigger for the workflow - there is an issue with secrets not being available for forked repos --- .github/workflows/summarise_upcoming_events.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/summarise_upcoming_events.yml b/.github/workflows/summarise_upcoming_events.yml index 41b023a..215ff2f 100644 --- a/.github/workflows/summarise_upcoming_events.yml +++ b/.github/workflows/summarise_upcoming_events.yml @@ -1,8 +1,6 @@ name: Summarise Upcoming Meetup Events on: - pull_request: - types: [opened, synchronize, reopened ] workflow_dispatch: schedule: - cron: '0 7 * * 1' # Monday at 7am GMT From 3c7b4b54d61cb65349279a80b5948e21ee119da6 Mon Sep 17 00:00:00 2001 From: Silke Nodwell Date: Fri, 13 Feb 2026 10:50:14 +0000 Subject: [PATCH 2/2] Fix an issue with the date formatting that caused past events to be included --- tools/llm_meetup_summary/llm_event_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/llm_meetup_summary/llm_event_summary.py b/tools/llm_meetup_summary/llm_event_summary.py index 742bb08..36ec4a7 100644 --- a/tools/llm_meetup_summary/llm_event_summary.py +++ b/tools/llm_meetup_summary/llm_event_summary.py @@ -42,8 +42,8 @@ def get_date_of_event_iso(event): return event_date_formatted def _filter_future_events(events): - today = date.today().isoformat() - return [event for event in events if get_date_of_event_iso(event) > today] + today = date.today().isoformat().replace('-', '') + return [event for event in events if get_date_of_event_iso(event) >= today] def _validate_event(event): missing_fields = [field for field in REQUIRED_EVENT_FIELDS if field not in event]