Add Meetup event synchronization - #82
Merged
Merged
Conversation
✅ Deploy Preview for powershellorg ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an automated synchronization path that pulls upcoming events from configured Meetup groups and writes them into the Hugo content/calendar/ section as source-managed Markdown entries, driven by a scheduled GitHub Actions workflow.
Changes:
- Introduces a scheduled/manual GitHub Actions workflow to run a Meetup sync and open a PR with updated calendar content.
- Adds a Node.js script that queries Meetup’s GraphQL API and reconciles generated calendar Markdown files.
- Seeds a JSON registry of Meetup group
urlnamevalues to define which groups are synchronized.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
data/meetup_groups.json |
Adds initial registry of Meetup groups to sync. |
.github/workflows/meetup-sync.yml |
Adds scheduled + manual workflow that runs the sync script and opens a PR with changes. |
.github/scripts/sync-meetup-events.mjs |
Implements Meetup GraphQL fetch + calendar Markdown generation/removal logic. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Member
Author
|
@BohrenAn I'm going to point to your meetup ical feed. This changed the event slightly BUT it means that all future events will automatically show up. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/events/ical/feed for event times, descriptions, URLs, and cancellation status—no Meetup API key or OAuth token is requiredConfiguration
Add a Meetup group URL name to
data/meetup_groups.json, confirm that its publichttps://www.meetup.com/<urlname>/events/ical/feed exposes the intended events, and the scheduled workflow will synchronize them.Verification
node --check .github/scripts/sync-meetup-events.mjsNo Meetup repository secrets are needed.