Skip to content

Commit 2bcbbdc

Browse files
committed
fix: Wait longer before retrieving linked PR
1 parent 66ec556 commit 2bcbbdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/fix/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default async function () {
5151
core.info(
5252
`Assigned ${issue.owner}/${issue.repository}#${issue.issueNumber} to Copilot!`
5353
);
54-
await sleep(1000); // Wait for Copilot to open a PR
54+
await sleep(5000); // Wait for Copilot to open a PR
5555
const pullRequest = await getLinkedPR(octokit, issue);
5656
if (pullRequest) {
5757
fixing.pullRequest = pullRequest;

0 commit comments

Comments
 (0)