Skip to content

Commit 8d0cdbb

Browse files
authored
Merge pull request #195 from burgerdev/manual-workflows
Allow manual execution of GitHub workflows
2 parents 186a791 + c00b638 commit 8d0cdbb

6 files changed

+6
-0
lines changed

.github/workflows/presubmit-c.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ['master']
55
pull_request:
66
branches: ['master']
7+
workflow_dispatch: {}
78

89
jobs:
910
clang-format:

.github/workflows/presubmit-go.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ['master']
55
pull_request:
66
paths: ['go/**', '.github/workflows/presubmit-go.yml']
7+
workflow_dispatch: {}
78

89
defaults:
910
run:

.github/workflows/presubmit-python.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ['master']
55
pull_request:
66
paths: ['python/**', '.github/workflows/presubmit-python.yml']
7+
workflow_dispatch: {}
78

89
defaults:
910
run:

.github/workflows/presubmit-rust.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ['master']
55
pull_request:
66
paths: ['rust/**', '.github/workflows/presubmit-rust.yml']
7+
workflow_dispatch: {}
78

89
defaults:
910
run:

.github/workflows/presubmit-shell.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ['master']
55
pull_request:
66
paths: ['**.sh', '.github/workflows/presubmit-shell.yml']
7+
workflow_dispatch: {}
78

89
jobs:
910
shellcheck:

.github/workflows/presubmit-yaml.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: ['master']
55
pull_request:
66
paths: ['**.yml', '**.yaml']
7+
workflow_dispatch: {}
78

89
jobs:
910
lint:

0 commit comments

Comments
 (0)