Skip to content

Commit

Permalink
Merge pull request godotengine#18 from lawnjelly/plus_workflow_dispatch
Browse files Browse the repository at this point in the history
Enable workflows on dispatch
  • Loading branch information
lawnjelly authored Mar 31, 2023
2 parents 5887acc + a75e5b4 commit 389f8cd
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🤖 Android Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🍏 iOS Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/javascript_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🌐 JavaScript Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🐧 Linux Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_dev_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🐧 Linux Dev Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🍎 macOS Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ☁ Server Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_builds.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 🏁 Windows Builds
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

# Global Settings
# SCONS_CACHE for windows must be set in the build environment
Expand Down

0 comments on commit 389f8cd

Please sign in to comment.