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 1b3960f commit fb8f712Copy full SHA for fb8f712
.github/workflows/first-workflow.yml
@@ -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
21
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