Skip to content

Commit fb8f712

Browse files
author
Rafferty Uy
committed
first workflow
1 parent 1b3960f commit fb8f712

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/first-workflow.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: My First Workflow
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
echo:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Step 1
14+
run: echo "Step 1 complete"
15+
- name: Step 2
16+
run: echo "Step 2 complete"
17+
18+
cow:
19+
name: Cowsays
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Ship it
23+
uses: mscoutermarsh/cowsays-action@master
24+
with:
25+
text: 'Ready for prod–ship it!'
26+
color: 'red'

0 commit comments

Comments
 (0)