From 8d3bd647360116cd5d96201e3dba6d7468bff37d Mon Sep 17 00:00:00 2001 From: joseph-sentry Date: Fri, 12 Jun 2026 16:51:50 -0400 Subject: [PATCH] fix(seer): correct pr_created provider value in webhook docs The pr_created (and iteration) webhook payloads emit "provider": "unknown", not "github". The PR state object carries no provider field, so the value is hardcoded to "unknown" in the broadcaster. Update the example to match what is actually sent. --- docs/integrations/integration-platform/webhooks/seer.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/integration-platform/webhooks/seer.mdx b/docs/integrations/integration-platform/webhooks/seer.mdx index c1c32fe8ead2b2..967763882ca620 100644 --- a/docs/integrations/integration-platform/webhooks/seer.mdx +++ b/docs/integrations/integration-platform/webhooks/seer.mdx @@ -258,7 +258,7 @@ Includes pull request details, there may be more than one pull request if there "pr_id": 456789 }, "repo_name": "my-app", - "provider": "github" + "provider": "unknown" } ] },