Skip to content

Commit 4f3cf63

Browse files
committed
ci: add manual-workflow workflow
1 parent d28da55 commit 4f3cf63

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Trigger me via GitHub Actions UI manually
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
type: string
8+
required: true
9+
10+
jobs:
11+
example:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
with:
18+
ref: ${{ inputs.branch }}
19+
20+
- name: Run
21+
run: ls

0 commit comments

Comments
 (0)