Skip to content

Commit

Permalink
fix: add workflow_dispatch option for test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
obs-gh-alexlew committed May 2, 2024
1 parent 9a21f70 commit 6726a92
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: Build Release

on:
pull_request:
workflow_dispatch:
inputs:
branch:
description: "The branch to attempt to build"
required: true
default: "main"

permissions:
contents: write
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/tests-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
branches:
- main
pull_request:
workflow_dispatch:
inputs:
branch:
description: "The branch to attempt to build"
required: true
default: "main"

jobs:
test:
Expand Down

0 comments on commit 6726a92

Please sign in to comment.