From cf77bb207f52c98091d88bb5ca04b795ff3bc727 Mon Sep 17 00:00:00 2001 From: Oleksandr Chaikovskyi Date: Mon, 7 Jun 2021 21:40:34 +0300 Subject: [PATCH] Extend WebhookPayload interface with `inputs` property --- packages/github/src/interfaces.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/github/src/interfaces.ts b/packages/github/src/interfaces.ts index 8ab08bfe..8295b871 100644 --- a/packages/github/src/interfaces.ts +++ b/packages/github/src/interfaces.ts @@ -40,4 +40,7 @@ export interface WebhookPayload { id: number [key: string]: any } + inputs?: { + [key: string]: string | null | undefined + } }