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 11f2dac commit 53195e8Copy full SHA for 53195e8
.github/workflows/first-workflow.yaml
@@ -0,0 +1,26 @@
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
+ steps:
12
+ - name: step one
13
+ run: echo "Log from step one"
14
+ env:
15
+ VARIABLE_NAME: value
16
+ - name: step two
17
+ run: echo "Log from step two"
18
+ job2:
19
20
21
+ - name: Cowsays
22
+ uses: mscoutermarsh/cowsays-action@master
23
+ with:
24
+ text: 'Ready to prod-ship it!'
25
+ color: 'magenta'
26
0 commit comments