浏览代码

Merge pull request #106438 from Ivorforce/ci-run-attempt-2

Make it possible to run CI manually if `DISABLE_GODOT_CI` is set.
Thaddeus Crews 3 月之前
父节点
当前提交
1069cb1df3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .github/workflows/runner.yml

+ 1 - 1
.github/workflows/runner.yml

@@ -9,7 +9,7 @@ jobs:
   # First stage: Only static checks, fast and prevent expensive builds from running.
 
   static-checks:
-    if: "!vars.DISABLE_GODOT_CI"
+    if: ${{ !vars.DISABLE_GODOT_CI || github.run_attempt > 1 }}
     name: 📊 Static checks
     uses: ./.github/workflows/static_checks.yml