Skip to content

Commit

Permalink
reduce timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Kearl committed May 11, 2022
1 parent b091597 commit 5f00891
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code-review-chat/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion code-review-chat/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CodeReviewChatAction extends Action {
const auth = getRequiredInput('token');
const github = new Octokit({ auth });

await new Promise((resolve) => setTimeout(resolve, 3 * 60 * 1000));
await new Promise((resolve) => setTimeout(resolve, 1 * 60 * 1000));

await new BuildChat(github, issue, {
slackToken,
Expand Down

0 comments on commit 5f00891

Please sign in to comment.