Skip to content

Commit d561163

Browse files
committed
Merge pull request godotengine#112594 from Ivorforce/gh-dispatch
Add `workflow_dispatch` triggers to platform CI.
2 parents af256ff + 918fda1 commit d561163

File tree

8 files changed

+9
-2
lines changed

8 files changed

+9
-2
lines changed

.github/workflows/android_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🤖 Android Builds
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
# Global Settings
67
env:

.github/workflows/ios_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🍏 iOS Builds
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
# Global Settings
67
env:

.github/workflows/linux_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🐧 Linux Builds
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
# Global Settings
67
env:

.github/workflows/macos_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🍎 macOS Builds
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
# Global Settings
67
env:

.github/workflows/runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 🔗 GHA
2-
on: [push, pull_request, merge_group]
2+
on: [push, pull_request, merge_group, workflow_dispatch]
33

44
concurrency:
55
group: ${{ github.workflow }}|${{ github.ref_name }}
@@ -9,7 +9,7 @@ jobs:
99
# First stage: Only static checks, fast and prevent expensive builds from running.
1010

1111
static-checks:
12-
if: ${{ !vars.DISABLE_GODOT_CI || github.run_attempt > 1 }}
12+
if: ${{ !vars.DISABLE_GODOT_CI || github.run_attempt > 1 || github.event_name == 'workflow_dispatch' }}
1313
name: 📊 Static checks
1414
uses: ./.github/workflows/static_checks.yml
1515

.github/workflows/static_checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 📊 Static Checks
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
jobs:
67
static-checks:

.github/workflows/web_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🌐 Web Builds
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
# Global Settings
67
env:

.github/workflows/windows_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🏁 Windows Builds
22
on:
33
workflow_call:
4+
workflow_dispatch:
45

56
# Global Settings
67
env:

0 commit comments

Comments
 (0)