diff --git a/.github/workflows/AddPullReady.yml b/.github/workflows/AddPullReady.yml index 6122e1ed..fc892b09 100644 --- a/.github/workflows/AddPullReady.yml +++ b/.github/workflows/AddPullReady.yml @@ -102,7 +102,7 @@ jobs: } for (const checkRun of checkRuns.data.check_runs) { if (checkRun.name.endsWith(context.job)) continue - if (checkRun.conclusion !== "success") { + if (!["success", "skipped"].includes(checkRun.conclusion)) { console.log("Not adding pull ready because " + checkRun.name + " has not passed yet: " + checkRun.html_url) process.exit() }