Skip to content

Commit bb51638

Browse files
author
Frederic Wickert
committed
WF
1 parent 990c821 commit bb51638

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
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: Echo Step 1
11+
run: echo "This is Step 1"
12+
- name: Echo Step 2
13+
run: echo "This is Step 2"
14+
15+
job2:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Cowsays
19+
uses: mscoutermarsh/cowsays-action@master
20+
with:
21+
text: "Ready for prod LOL"
22+
color: "mangenta"

0 commit comments

Comments
 (0)