We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d78cfe commit 3bbcd88Copy full SHA for 3bbcd88
.github/workflows/first-workflow.yml
@@ -0,0 +1,27 @@
1
+name: First Workflow
2
+
3
+on:
4
+ workflow_dispatch:
5
+ issues:
6
+ types: [opened]
7
8
+jobs:
9
+ job1:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Step one
14
+ run: echo "Log from step one"
15
+ - name: Step two
16
+ run: echo "Log from step two"
17
18
+ job2:
19
+ needs: job1
20
21
22
23
+ - name: Cowsays
24
+ uses: mscoutermarsh/cowsays-action@master
25
+ with:
26
+ text: 'Ready for prod--ship it!'
27
+ color: 'magenta'
0 commit comments