Skip to content

Commit 500cc2d

Browse files
dsp-antclaude
andauthored
Add weekly SEP review reminder workflow (modelcontextprotocol#2192)
* Add weekly SEP review reminder workflow Adds a GitHub Actions workflow that posts a Discord reminder every Wednesday at 10am PST to notify maintainers about upcoming SEP reviews for the MCP Core Maintainer Meeting. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add explicit empty permissions block to SEP reminder workflow --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 459b6b5 commit 500cc2d

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/sep-reminder.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: SEP Review Reminder
2+
3+
on:
4+
schedule:
5+
# Every Wednesday at 10am PST (18:00 UTC)
6+
- cron: "0 18 * * 3"
7+
workflow_dispatch: # Allow manual triggering
8+
9+
permissions: {}
10+
11+
jobs:
12+
discord-reminder:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Post Discord reminder
17+
run: |
18+
curl -X POST "${{ secrets.DISCORD_MAINTAINER_WEBHOOK }}" \
19+
-H "Content-Type: application/json" \
20+
-d '{
21+
"content": "@everyone 📋 **Weekly SEP Review Reminder**\n\nPlease ensure any SEPs that should be reviewed in the next **MCP Core Maintainer Meeting** are:\n\n1. Put into `in-review` state\n2. Added to the [meeting doc](https://docs.google.com/document/d/1annqJ2m4jNFOx6vU0FMnDSr6V3c5uN4TCT_uuZcZFh8/edit?tab=t.0#heading=h.9k72mrwd8fnr)\n\nFor SEP guidelines, see: https://modelcontextprotocol.io/community/sep-guidelines"
22+
}'

0 commit comments

Comments
 (0)