createGithubWebhookAction()
Home > @backstage/plugin-scaffolder-backend-module-github
> createGithubWebhookAction
Creates new action that creates a webhook for a repository on GitHub.
Signature:
function createGithubWebhookAction(options: {
integrations: ScmIntegrationRegistry;
defaultWebhookSecret?: string;
githubCredentialsProvider?: GithubCredentialsProvider;
}): import("@backstage/plugin-scaffolder-node").TemplateAction<{
repoUrl: string;
webhookUrl: string;
webhookSecret?: string;
events?: string[];
active?: boolean;
contentType?: "form" | "json";
insecureSsl?: boolean;
token?: string;
}, import("@backstage/types").JsonObject, "v1">;
Parameters
Parameter |
Type |
Description |
---|---|---|
options |
{ integrations: ScmIntegrationRegistry; defaultWebhookSecret?: string; githubCredentialsProvider?: GithubCredentialsProvider; } |
import("@backstage/plugin-scaffolder-node").TemplateAction<{ repoUrl: string; webhookUrl: string; webhookSecret?: string; events?: string[]; active?: boolean; contentType?: "form" | "json"; insecureSsl?: boolean; token?: string; }, import("@backstage/types").JsonObject, "v1">