Skip to content

Commit

Permalink
Improve verification-causing events
Browse files Browse the repository at this point in the history
  • Loading branch information
willsawyerrrr committed Jan 18, 2024
1 parent f85c076 commit 2010431
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ const app = new App({

app.webhooks.on("pull_request.closed", run);
app.webhooks.on(
["pull_request.opened", "pull_request.reopened", "pull_request.synchronize"],
[
"pull_request.edited",
"pull_request.opened",
"pull_request.ready_for_review",
"pull_request.reopened",
"pull_request.synchronize",
],
verify
);

Expand Down

0 comments on commit 2010431

Please sign in to comment.