Skip to content

Commit

Permalink
Add workflow_dispatch to workflows (#2295)
Browse files Browse the repository at this point in the history
## Description

This PR adds `workflow_dispatch` to workflows so that they can be run
manually when needed.
  • Loading branch information
j-piasecki authored Nov 27, 2023
1 parent 49d6f78 commit 8c7b066
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
paths:
- 'docs/**'
workflow_dispatch:

jobs:
check:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: macos-12
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/kotlin-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-example-apps-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-root-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8c7b066

Please sign in to comment.