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 c0dbcd2 commit 0bb1f99Copy full SHA for 0bb1f99
.github/workflows/first-workflow.yml
@@ -0,0 +1,35 @@
1
+name: Manual Trigger Workflow
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v2
13
14
+ - name: Run a simple script
15
+ run: echo "This workflow was manually triggered!"
16
17
+ job1:
18
19
20
21
+ - name: Step 1
22
+ run: echo "Step 1 complete!"
23
24
+ - name: Step 2
25
+ run: echo "Step 2 complete!"
26
27
+ job2:
28
29
30
31
+ - name: Cowsays Action
32
+ uses: peter-evans/cowsay@v1
33
+ with:
34
+ text: "Ready for prod–ship it!"
35
+ color: magenta
0 commit comments