Skip to content

Commit 1b6e4e8

Browse files
Create manual.yml
Added a workflow for manual testing.
1 parent 49d1cf0 commit 1b6e4e8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/manual.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Manual
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
description: 'Branch to run the workflow on'
8+
required: true
9+
default: 'main'
10+
11+
jobs:
12+
test:
13+
uses: ./.github/workflows/test.yml
14+
with:
15+
branch: ${{ inputs.branch }}

0 commit comments

Comments
 (0)