Skip to content

Commit

Permalink
Add workflow_dispatch option to github actions (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
emgarten authored Apr 19, 2024
1 parent 6566326 commit fa5460b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ on:
paths-ignore:
- 'doc/**'
- '*.md'
workflow_dispatch:
inputs:
branch:
description: 'Branch to run on'
required: true
default: 'main'

jobs:
build-linux:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ on:
paths-ignore:
- 'doc/**'
- '*.md'
workflow_dispatch:
inputs:
branch:
description: 'Branch to run on'
required: true
default: 'main'

jobs:
build-linux:
Expand Down

0 comments on commit fa5460b

Please sign in to comment.