diff --git a/.github/actions/label/build.js b/.github/actions/label/build.js index 9308115a223..1a05c417fa0 100644 --- a/.github/actions/label/build.js +++ b/.github/actions/label/build.js @@ -31,7 +31,7 @@ const skip = async ({ github }) => { ? check_runs.filter((run) => run.name === "build" || run.name === "build / linux") : check_runs.filter((run) => run.name === "build / macox-x86"); - if (runs.length === 0) return true; + if (runs.length === 0) return false; for (run of runs) { if (run.conclusion !== "skipped") return true; } diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 4f4443f8c1f..840adc07d1e 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -1,5 +1,5 @@ # Prefix A for adjusting the new created checks into this check suite. -name: A-Label +name: Label on: pull_request: