We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bd1dde commit cad83e8Copy full SHA for cad83e8
1 file changed
.github/workflows/AddPullReady.yml
@@ -102,7 +102,7 @@ jobs:
102
}
103
for (const checkRun of checkRuns.data.check_runs) {
104
if (checkRun.name.endsWith(context.job)) continue
105
- if (checkRun.conclusion !== "success") {
+ if (!["success", "skipped"].includes(checkRun.conclusion)) {
106
console.log("Not adding pull ready because " + checkRun.name + " has not passed yet: " + checkRun.html_url)
107
process.exit()
108
0 commit comments