Skip to content

Commit

Permalink
[ci] add workflow_dispatch trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Mar 28, 2023
1 parent 4737e60 commit 5a48dc0
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 14 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 🤖 Android
on: [push, pull_request]
name: 🤖 Android Builds
on:
workflow_call:
workflow_dispatch:

# Global Settings
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 🍏 iOS
on: [push, pull_request]
name: 🍏 iOS Builds
on:
workflow_call:
workflow_dispatch:

# Global Settings
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 🐧 Linux
on: [push, pull_request]
name: 🐧 Linux Builds
on:
workflow_call:
workflow_dispatch:

# Global Settings
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 🍎 macOS
on: [push, pull_request]
name: 🍎 macOS Builds
on:
workflow_call:
workflow_dispatch:

# Global Settings
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/static_checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 📊 Static
on: [push, pull_request]
name: 📊 Static Checks
on:
workflow_call:
workflow_dispatch:

concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 🌐 Web
on: [push, pull_request]
name: 🌐 Web Builds
on:
workflow_call:
workflow_dispatch:

# Global Settings
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: 🏁 Windows
on: [push, pull_request]
name: 🏁 Windows Builds
on:
workflow_call:
workflow_dispatch:

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

0 comments on commit 5a48dc0

Please sign in to comment.