Skip to content

Commit dc77d1b

Browse files
committed
- adds worfklow dispatch event to be able to manually trigger the workflows
1 parent 891b7bf commit dc77d1b

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "Checks the SDK only using APIs from the targeted API level"
22

3-
on:
3+
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- dev

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "CodeQL"
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [dev, master]
67
pull_request:

.github/workflows/conflicting-pr-label.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name: PullRequestConflicting
55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the master branch
77
on:
8+
workflow_dispatch:
89
push:
910
branches: [ master, dev ]
1011
pull_request:

.github/workflows/sample-build-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "samples build check"
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- '**/*.java'

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Static analysis with SonarCloud
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- master

0 commit comments

Comments
 (0)