Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Dec 21, 2023
1 parent 4e888c7 commit 3006a9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ import { GitHubEvent } from "./types/github-events";

export default function main(app: Probot) {
const allowedEvents = Object.values(GitHubEvent);
app.on(allowedEvents, async (context) => await bindEvents(context));
app.on(allowedEvents, async (context) => {
await bindEvents(context);
});
}

0 comments on commit 3006a9a

Please sign in to comment.