Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
revert: this needs type information
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Nov 27, 2023
1 parent ac2534e commit b1cc46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export async function bindEvents(eventContext: ProbotContext) {
}

if (eventContext.name === GitHubEvent.REPOSITORY_DISPATCH) {
const dispatchPayload = payload;
const dispatchPayload = payload as any;
if (payload.action === "issueClosed") {
//This is response for issueClosed request
const response = dispatchPayload.client_payload.result;
Expand Down

0 comments on commit b1cc46f

Please sign in to comment.