GitHub is one of the six sources with both an open-source ingest skill and a paid webhook receiver.Documentation Index
Fetch the complete documentation index at: https://docs.mycelium-ai.co/llms.txt
Use this file to discover all available pages before exploring further.
Open-source ingest skill
Pull PRs, commits, and issues intoExternal Inputs/GitHub/<owner>/<repo>/<YYYY-MM-DD>.md. Requires a GitHub personal access token with repo scope (or public_repo for public repos).
Webhook receiver (paid runtime)
Real-time push from GitHub webhooks.X-Hub-Signature-256: sha256=<hmac-sha256>. The receiver validates the HMAC against the per-tenant secret.
Setup
- In the repository (or organization), go to Settings > Webhooks > Add webhook.
- Set Payload URL to
https://runtime.myceliumai.co/webhooks/github/{your_tenant_id}. - Set Content type to
application/json. - Enter the signing secret and add it to the runtime:
GITHUB_WEBHOOK_SECRET_{TENANT_ID}in your env. - Select individual events or send everything. Recommended: Pull requests, Issues, Push, Releases.
Events ingested
| GitHub event | Memory category | Notes |
|---|---|---|
pull_request | decision | PR merged = decision committed; PR closed = exception |
issues | exception | Issue opened = exception; closed = resolved exception |
push | fact | Commit messages extracted as facts |
release | decision | Tagged release captured with release notes |
create (branch) | fact | Branch creation logged |