ci: add workflow_dispatch event to testing workflows

This allows us to easily test the release branch if needed.
This commit is contained in:
dundargoc 2024-03-27 14:14:25 +01:00 committed by dundargoc
parent 443ea1b00d
commit 1bfe6fdceb
4 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,7 @@ on:
- '**/CMakePresets.json' - '**/CMakePresets.json'
- 'cmake.*/**' - 'cmake.*/**'
- '.github/**' - '.github/**'
workflow_dispatch:
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -10,6 +10,8 @@ on:
pull_request: pull_request:
# The branches below must be a subset of the branches above # The branches below must be a subset of the branches above
branches: [ "master" ] branches: [ "master" ]
workflow_dispatch:
jobs: jobs:
analyze: analyze:
name: Analyze name: Analyze

View File

@ -10,6 +10,7 @@ on:
- 'release-[0-9]+.[0-9]+' - 'release-[0-9]+.[0-9]+'
paths-ignore: paths-ignore:
- 'contrib/**' - 'contrib/**'
workflow_dispatch:
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -7,6 +7,7 @@ on:
functionaltest_timeout: functionaltest_timeout:
default: 20 default: 20
type: number type: number
workflow_dispatch:
jobs: jobs:
windows: windows: