Skip to content

Commit cad83e8

Browse files
Update AddPullReady workflow to allow skipped checks for pull ready label (#332)
1 parent 9bd1dde commit cad83e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/AddPullReady.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
}
103103
for (const checkRun of checkRuns.data.check_runs) {
104104
if (checkRun.name.endsWith(context.job)) continue
105-
if (checkRun.conclusion !== "success") {
105+
if (!["success", "skipped"].includes(checkRun.conclusion)) {
106106
console.log("Not adding pull ready because " + checkRun.name + " has not passed yet: " + checkRun.html_url)
107107
process.exit()
108108
}

0 commit comments

Comments
 (0)