Skip to content

Commit 8c7b066

Browse files
authored
Add workflow_dispatch to workflows (#2295)
## Description This PR adds `workflow_dispatch` to workflows so that they can be run manually when needed.
1 parent 49d6f78 commit 8c7b066

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

.github/workflows/android-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
push:
1111
branches:
1212
- main
13+
workflow_dispatch:
1314
jobs:
1415
build:
1516
runs-on: ubuntu-latest

.github/workflows/docs-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
paths:
66
- 'docs/**'
7+
workflow_dispatch:
78

89
jobs:
910
check:

.github/workflows/ios-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
push:
1111
branches:
1212
- main
13+
workflow_dispatch:
1314
jobs:
1415
build:
1516
runs-on: macos-12

.github/workflows/kotlin-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
push:
77
branches:
88
- main
9+
workflow_dispatch:
910
jobs:
1011
check:
1112
runs-on: ubuntu-latest

.github/workflows/static-example-apps-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- main
10+
workflow_dispatch:
1011
jobs:
1112
check:
1213
runs-on: ubuntu-latest

.github/workflows/static-root-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- main
10+
workflow_dispatch:
1011
jobs:
1112
check:
1213
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)