Skip to content

Commit

Permalink
add manual triggers for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jGaboardi committed Sep 19, 2021
1 parent 2101c8e commit b39305b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
workflow_dispatch:
inputs:
version:
description: Manual Doc Build Reason
description: Manual Doc Build
default: test
required: false
jobs:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
- '*'
schedule:
- cron: '59 23 * * *'
workflow_dispatch:
inputs:
version:
description: Manual Unittest Run
default: test
required: false

jobs:
unittests:
Expand Down

0 comments on commit b39305b

Please sign in to comment.