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 name: CIFuzz
on: on:
push: push:
paths: paths:
@ -8,6 +9,7 @@ on:
paths: paths:
- "**.c" - "**.c"
- "**.h" - "**.h"
workflow_dispatch:
jobs: jobs:
Fuzzing: Fuzzing:

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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