File tree Expand file tree Collapse file tree 3 files changed +36
-6
lines changed
Expand file tree Collapse file tree 3 files changed +36
-6
lines changed Original file line number Diff line number Diff line change 66 required : true
77
88jobs :
9- hello_world :
10- runs-on : ubuntu-latest
11- environment : ${{ inputs.env }}
12- steps :
13- - name : Hello world
14- run : echo "Hello, world!"
9+ hello_world_1 :
10+ uses : ./.github/workflows/reusable_1.yml
11+ with :
12+ env : ${{ inputs.env }}
13+ hello_world_2 :
14+ uses : ./.github/workflows/reusable_2.yml
15+ with :
16+ env : ${{ inputs.env }}
Original file line number Diff line number Diff line change 1+ on :
2+ workflow_call :
3+ inputs :
4+ env :
5+ type : string
6+ required : true
7+
8+ jobs :
9+ hello_world_1 :
10+ runs-on : ubuntu-latest
11+ environment : ${{ inputs.env }}
12+ steps :
13+ - name : Hello world 1
14+ run : echo "Hello, world 1!"
Original file line number Diff line number Diff line change 1+ on :
2+ workflow_call :
3+ inputs :
4+ env :
5+ type : string
6+ required : true
7+
8+ jobs :
9+ hello_world_2 :
10+ runs-on : ubuntu-latest
11+ environment : ${{ inputs.env }}
12+ steps :
13+ - name : Hello world 2
14+ run : echo "Hello, world 1!"
You can’t perform that action at this time.
0 commit comments