diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index f912700d..fdae488c 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -8,7 +8,7 @@ workflow_dispatch: inputs: version: - description: Manual Doc Build Reason + description: Manual Doc Build default: test required: false jobs: diff --git a/.github/workflows/release_and_publish.yml b/.github/workflows/release_and_publish.yml index 7bc32b39..e43a7843 100644 --- a/.github/workflows/release_and_publish.yml +++ b/.github/workflows/release_and_publish.yml @@ -10,6 +10,13 @@ on: # Sequence of patterns matched against refs/tags tags: - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 + workflow_dispatch: + inputs: + version: + description: Manual Release + default: test + required: false + jobs: build: diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 68d9605e..fd294764 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -9,6 +9,12 @@ - '*' schedule: - cron: '59 23 * * *' + workflow_dispatch: + inputs: + version: + description: Manual Unittest Run + default: test + required: false jobs: unittests: