GitHub webhook connector
Receive events from GitHub
Required inputs
| Key | Label | Type |
|---|---|---|
inbound.context | Webhook ID | string |
| Correlation key (process) | FEEL expression |
correlationKeyExpression | Correlation key (payload) | FEEL expression |
Optional inputs
| Key | Label | Type |
|---|---|---|
inbound.hmacSecret | GitHub secret | secret |
inbound.activationCondition | Condition | FEEL expression |
resultVariable | Result variable | string |
resultExpression | Result expression | FEEL expression |
Apply this connector with @bpmnkit/connectors
import { applyConnectorTemplate } from "@bpmnkit/connectors"
const result = applyConnectorTemplate("io.camunda.connectors.webhook.GithubWebhookConnectorIntermediate.v1", {
"inbound.context": "...",
"": "= ...",
"correlationKeyExpression": "= ...",
"inbound.hmacSecret": "<your github secret>",
"inbound.activationCondition": "= ...",
})