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

Make it possible to run CI manually if `DISABLE_GODOT_CI` is set.
This commit is contained in:
Thaddeus Crews
2025-05-15 10:22:21 -05:00

View File

@ -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