diff --git a/src/platforms/github/github-webhook-payload.ts b/src/platforms/github/github-webhook-payload.ts new file mode 100644 index 0000000..4049873 --- /dev/null +++ b/src/platforms/github/github-webhook-payload.ts @@ -0,0 +1,11 @@ +import { GitHubRelease } from "./github-release"; + +/** + * Represents the payload of a GitHub webhook event. + */ +export interface GitHubWebhookPayload { + /** + * Information about the release associated with the webhook event, if applicable. + */ + release?: GitHubRelease; +}