Skip to content

Commit de555b2

Browse files
committed
Allow the CI fuzz workflow to be manually triggered too
This adds workflow_dispatch as an event trigger for `cifuzz.yml`. Since that should be sufficient to cover the rare case where one wishes to run it outside of a pull request against the `main` branch, this narrows the existing pull_request trigger to occur only on `main`, as is already the case in the other workflows that are intended to run more often than this one.
1 parent 323308c commit de555b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/cifuzz.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: CIFuzz
2-
on: [pull_request]
2+
on:
3+
pull_request:
4+
branches: [ main ]
5+
workflow_dispatch:
36
jobs:
47
Fuzzing:
58
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)