Troubleshooting
Use this page when GitHub is not delivering events to Sigvane, your inbox looks empty, or the CLI is not processing inbox items.
Start With The Delivery Path
Section titled “Start With The Delivery Path”For a GitHub webhook to become an inbox item:
- GitHub must send the delivery to the exact Sigvane webhook URL.
- The request must use
application/json. - The signing secret in GitHub must match the current signing secret in Sigvane.
- Sigvane must accept and store the delivery.
- The browser, API, or CLI must read the stored inbox item.
Work through the path in that order. It usually points to the problem faster than changing several settings at once.
The Inbox Is Empty
Section titled “The Inbox Is Empty”If Sigvane shows no recent items after you add the webhook:
- Open the webhook in GitHub and check Recent Deliveries.
- Confirm the Payload URL matches the full Sigvane webhook URL exactly.
- Confirm Content type is
application/json. - Confirm Secret uses the current Sigvane signing secret.
- Confirm Active is checked.
- Redeliver the
pingevent from GitHub, then refresh Recent items in Sigvane.
If GitHub has no recent deliveries, the webhook may not be active or may not be saved on the repository or organization you expected.
GitHub Shows A Failed Delivery
Section titled “GitHub Shows A Failed Delivery”Open the failed delivery in Recent Deliveries and check GitHub’s response details.
Common causes:
- Wrong webhook URL. Copy the URL from the Sigvane inbox again and paste it into GitHub’s Payload URL field.
- Wrong content type. Change GitHub’s Content type to
application/json. - Wrong signing secret. Copy the current Sigvane signing secret and update GitHub’s Secret field.
- Wrong webhook scope. A repository webhook only sends events for that repository. An organization webhook can send events for many repositories in the organization.
After changing GitHub settings, use Recent Deliveries -> Redeliver to test again.
A Specific Event Is Missing
Section titled “A Specific Event Is Missing”If ping works but your workflow never sees the event it expects, check the selected GitHub events.
For example, a webhook configured for only push events will not send pull_request events. Open the webhook in GitHub, update Which events would you like to trigger this webhook?, save it, then trigger or redeliver an event.
The Signing Secret Was Rotated
Section titled “The Signing Secret Was Rotated”If you rotate an inbox signing secret in Sigvane, update every GitHub webhook that sends to that inbox.
Old deliveries signed with the previous secret may fail after rotation. New deliveries should work once GitHub uses the updated secret.
Duplicate Inbox Items
Section titled “Duplicate Inbox Items”Duplicate deliveries can happen in normal webhook systems. GitHub may redeliver an event, and a worker may retry work after an interruption.
Use the inbox item’s providerDeliveryId when you need to identify the original provider delivery. For GitHub inboxes, this comes from GitHub’s delivery id.
Make handlers safe to run more than once before they comment on pull requests, deploy code, send notifications, or call another system.
The CLI Does Not Process Items
Section titled “The CLI Does Not Process Items”If sigvane inbox poll --once does not write or process any items:
- Confirm the inbox has recent items in Sigvane.
- Confirm the config uses the inbox slug, not the webhook URL.
- Confirm
SIGVANE_API_KEYis set in the same shell where you run the CLI. - Run
sigvane config checkand fix any reported config problems. - Trigger or redeliver a new GitHub delivery, then run
sigvane inbox poll --onceagain.
If your handler command fails, fix the command and run the poll again. Design the command so it can safely handle the same inbox item more than once.
If the CLI keeps replaying an old item after you intentionally handled it another way, reset the saved cursor for that inbox:
sigvane state reset github-repoReplace github-repo with your inbox slug.
The CLI Prints Unauthorized Or Not Found
Section titled “The CLI Prints Unauthorized Or Not Found”Check these first:
- The API key was copied correctly and exported without extra spaces.
- The API key belongs to the same Sigvane account that owns the inbox.
- The inbox slug in the config matches the inbox in Sigvane.
- The Sigvane server URL in the config is
https://api.sigvane.comunless you are intentionally using another environment.
For security, Sigvane may avoid revealing whether another account’s resource exists. Treat not-found responses as a reason to check both the API key and the inbox slug.
Related Guides
Section titled “Related Guides”- Quick start walks through the first GitHub delivery.
- Connect GitHub covers repository and organization webhook setup.
- CLI getting started shows the first CLI polling flow.
- CLI operations explains config discovery, state files, and handler behavior.