Skip to content

Commit 9cadf41

Browse files
Add option to trigger GH workflows manually (#3187)
It would be helpful to have the option to manually trigger a GitHub workflow via the UI. That can be done by adding the `workflow_dispatch:` key.
1 parent 6c82cde commit 9cadf41

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main ]
8+
workflow_dispatch:
89

910
permissions:
1011
contents: read

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: "CodeQL"
33
on:
44
schedule:
55
- cron: '56 11 * * 5'
6+
workflow_dispatch:
67

78
jobs:
89
analyze:

.github/workflows/ruby.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
branches: [ main ]
1313
pull_request:
1414
branches: [ main ]
15+
workflow_dispatch:
1516

1617
permissions:
1718
contents: read

0 commit comments

Comments
 (0)