Skip to content

Commit c70ab3f

Browse files
authored
[ci] getWorkflowRun should not throw early if workflow hasn't completed (facebook#31861)
We already have handling and retry logic for in-flight workflows in `downloadArtifactsFromGitHub`, so there's no need to exit early if we find a workflow for a given commit but it hasn't finished yet.
1 parent 9f540fc commit c70ab3f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/release/shared-commands/download-build-artifacts.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,7 @@ async function getWorkflowRun(commit) {
4343
);
4444

4545
const json = JSON.parse(res.stdout);
46-
const workflowRun = json.workflow_runs.find(
47-
run =>
48-
run.head_sha === commit &&
49-
run.status === 'completed' &&
50-
run.conclusion === 'success'
51-
);
46+
const workflowRun = json.workflow_runs.find(run => run.head_sha === commit);
5247

5348
if (workflowRun == null || workflowRun.id == null) {
5449
console.log(

0 commit comments

Comments
 (0)