Workflows / Github / membership

Github membership Event Notification to Slack & Email

Learn how to listen to the membership webhook event from Github to trigger a notification workflow in MagicBell.

Event payload

Sample payload for the membership event.

{
  "action": "added",
  "member": {
    "avatar_url": "https://avatars.githubusercontent.com/u/345678?v=4",
    "gravatar_id": "",
    "html_url": "https://github.com/new-member",
    "id": 345678,
    "login": "new-member",
    "node_id": "MDQ6VXNlcjM0NTY3OA==",
    "site_admin": false,
    "type": "User",
    "url": "https://api.github.com/users/new-member"
  },
  "organization": {
    "avatar_url": "https://avatars.githubusercontent.com/u/111111?v=4",
    "description": "Building great software",
    "id": 111111,
    "login": "acme",
    "node_id": "MDEyOk9yZ2FuaXphdGlvbjExMTExMQ==",
    "url": "https://api.github.com/orgs/acme"
  },
  "scope": "team",
  "sender": {
    "avatar_url": "https://avatars.githubusercontent.com/u/234567?v=4",
    "html_url": "https://github.com/team-lead",
    "id": 234567,
    "login": "team-lead",
    "node_id": "MDQ6VXNlcjIzNDU2Nw==",
    "type": "User"
  },
  "team": {
    "description": "Core engineering team",
    "html_url": "https://github.com/orgs/acme/teams/engineering",
    "id": 555555,
    "members_url": "https://api.github.com/organizations/111111/team/555555/members{/member}",
    "name": "Engineering",
    "node_id": "T_kwDOABC123",
    "notification_setting": "notifications_enabled",
    "parent": null,
    "permission": "push",
    "privacy": "closed",
    "repositories_url": "https://api.github.com/organizations/111111/team/555555/repos",
    "slug": "engineering",
    "url": "https://api.github.com/organizations/111111/team/555555"
  }
}

Connect Github to MagicBell to receive events and trigger workflows. This guide uses the MagicBell CLI.

Add the Github integration

Save your Github webhook signing secret in MagicBell. See GitHub webhooks.

magicbell integration save_github \
  --data '{"webhook_signing_secret":"your_secret_here"}'

Copy the ID from the response and use it to build your webhook URL:

https://api.magicbell.com/v2/integrations/github/webhooks/incoming/{id}

Setup the webhook

  • Setup a webhook in Github with the URL from the last step.
  • Select the membership event.
  • If you already have a webhook configured, make sure it includes this event.

Add a workflow

Create a workflow that triggers automatically when Github sends this event. Use liquid templates to access fields in your workflow.

Workflow key

Use this key to trigger the workflow when Github sends a membership event:

integration.github.membership

Filter by action: GitHub sends the event type in the header and the action in the payload body. Use an if condition to filter for the added action:

"if": "payload.action == 'added'"

Example workflow

Notify team members when new people join their team.

{
  "key": "integration.github.membership.added",
  "steps": [
    {
      "command": "broadcast",
      "input": {
        "action_url": "{{payload.team.html_url}}",
        "content": "{{payload.sender.login}} added {{payload.member.login}} to the {{payload.team.name}} team.",
        "overrides": {
          "providers": {
            "slack": {}
          }
        },
        "recipients": [
          {
            "external_id": "{{payload.team.slug}}"
          }
        ],
        "title": "New team member: {{payload.member.login}}"
      }
    }
  ]
}

Save with the CLI

Use the MagicBell CLI to save this workflow to your project. You can also use the Workflows API endpoint instead.

magicbell workflow save \
  --data '{"key":"integration.github.membership.added","steps":[{"command":"broadcast","input":{"action_url":"{{payload.team.html_url}}","content":"{{payload.sender.login}} added {{payload.member.login}} to the {{payload.team.name}} team.","overrides":{"providers":{"slack":{}}},"recipients":[{"external_id":"{{payload.team.slug}}"}],"title":"New team member: {{payload.member.login}}"}}]}'

Test the workflow

Use the Github CLI to trigger test events and verify your workflow executes correctly.

1. Trigger a test event

Use the GitHub CLI to forward webhook events from your repository to MagicBell:

gh webhook forward \
  --events=membership \
  --url=https://api.magicbell.com/v2/integrations/github/webhooks/incoming/{id}

2. Verify the workflow ran

Check that MagicBell received the event and executed the workflow:

magicbell workflow list_runs --workflow_key integration.github.membership.added

3. Debug issues

If the workflow failed or you need more details, fetch the run to see step-by-step execution:

magicbell workflow fetch_run --run_id {run_id}
View all Github workflows →