GHA: Add workflow_dispatch to enable manually triggering builds

This commit is contained in:
Hugo van Kemenade 2021-11-30 22:14:34 +02:00
parent 0bd97c3df9
commit 22ad04743c
8 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,5 @@
name: CIFuzz
on:
push:
paths:
@ -8,6 +9,7 @@ on:
paths:
- "**.c"
- "**.h"
workflow_dispatch:
jobs:
Fuzzing:

View File

@ -1,6 +1,6 @@
name: Lint
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
build:

View File

@ -5,6 +5,7 @@ on:
# branches to consider in the event; optional, defaults to all
branches:
- main
workflow_dispatch:
jobs:
update_release_draft:

View File

@ -1,6 +1,6 @@
name: Test Docker
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
build:

View File

@ -1,6 +1,6 @@
name: Test MinGW
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
build:

View File

@ -11,6 +11,7 @@ on:
paths:
- "**.c"
- "**.h"
workflow_dispatch:
jobs:
build:

View File

@ -1,6 +1,6 @@
name: Test Windows
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
build:

View File

@ -1,6 +1,6 @@
name: Test
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
build: