Make it possible to run CI manually if DISABLE_GODOT_CI is set.

This commit is contained in:
Lukas Tenbrink 2025-05-15 13:45:22 +02:00
parent 428a762e98
commit e0f8943d1e

View file

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