Skip to content

Commit 847cd7b

Browse files
author
System Administrator
committed
Update first-workflow.yml file
1 parent 80030cd commit 847cd7b

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/first-workflow.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,25 @@ on:
66
jobs:
77
job1:
88
runs-on: ubuntu-latest
9+
910
steps:
1011
- name: Step 1
1112
run: echo "Step 1 complete!"
13+
1214
- name: Step 2
1315
run: echo "Step 2 complete!"
1416

1517
job2:
1618
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!"
2219

20+
steps:
21+
- name: Cowsays
22+
# The 'uses' command executes a remote GitHub action.
23+
# A command like mscoutermarsh/cowsays-action means you can
24+
# find this code at https://github.com/mscoutermarsh/cowsays-action
25+
uses: mscoutermarsh/cowsays-action@master
26+
# The 'with' block includes parameters that the workflow will pass
27+
# to this action. Parameters are all in key-value format.
28+
with:
29+
text: 'Ready for prod--ship it!'
30+
color: 'magenta'

0 commit comments

Comments
 (0)