Skip to content

Commit 210fbff

Browse files
authored
Created demo manual workflow
1 parent d132ee3 commit 210fbff

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Demonstration of Manually Triggering on a Branch
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
run-on-dev:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Print Branch Name
12+
run: echo "Running on branch: ${{ github.ref_name }}"

0 commit comments

Comments
 (0)