Skip to content

Commit 80030cd

Browse files
author
System Administrator
committed
Add first-workflow.yml file
1 parent 77dd980 commit 80030cd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/first-workflow.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: First Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
job1:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Step 1
11+
run: echo "Step 1 complete!"
12+
- name: Step 2
13+
run: echo "Step 2 complete!"
14+
15+
job2:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Step 1
19+
run: echo "Step 1 complete!"
20+
- name: Step 2
21+
run: echo "Step 2 complete!"
22+

0 commit comments

Comments
 (0)