File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
job1 :
8
8
runs-on : ubuntu-latest
9
+
9
10
steps :
10
11
- name : Step 1
11
12
run : echo "Step 1 complete!"
13
+
12
14
- name : Step 2
13
15
run : echo "Step 2 complete!"
14
16
15
17
job2 :
16
18
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
19
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'
You can’t perform that action at this time.
0 commit comments