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 fe0f0a5 commit 46ecb87Copy full SHA for 46ecb87
.github/workflows/first-workflow.yml
@@ -1,17 +1,23 @@
1
name: First Workflow
2
3
on:
4
- workflow_dispatch:
+ workflow_dispatch:
5
+ issues:
6
+ types: [opened]
7
8
jobs:
- job1:
- runs-on: ubuntu-latest
9
- steps:
10
- - name: Echo Job 1
11
- run: echo "This is job 1"
+ job1:
+ runs-on: ubuntu-latest
12
13
- job2:
14
15
16
- - name: Echo Job 2
17
- run: echo "This is job 2"
+ steps:
+ - name: Step one
+ run: echo "Log from step one"
+ - name: Step two
+ run: echo "Log from step two"
+
18
+ job2:
19
20
21
22
23
0 commit comments