File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 9
9
steps :
10
10
- name : Test b
11
11
run : |
12
- echo "Test b ${github.workflow}"
12
+ echo "Test b ${{ github.workflow } }"
13
13
14
14
concurrency :
15
15
group : ${{ github.workflow }}-b-${{ github.event.pull_request.number || github.ref_name }}-${{ inputs.repository }}-${{ github.event_name == 'workflow_dispatch' }}-${{ inputs.job-name }}
Original file line number Diff line number Diff line change 9
9
steps :
10
10
- name : Test c
11
11
run : |
12
- echo "Test c ${github.workflow} "
12
+ echo "Test c ${{ github.workflow } } "
13
13
14
14
concurrency :
15
15
group : ${{ github.workflow }}-c-${{ github.event.pull_request.number || github.ref_name }}-${{ inputs.repository }}-${{ github.event_name == 'workflow_dispatch' }}-${{ inputs.job-name }}
Original file line number Diff line number Diff line change
1
+ name : Lan test d
2
+
3
+ on :
4
+ workflow_run :
5
+ workflows : ["Lan test a"]
6
+ types :
7
+ - completed
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Test c
14
+ run : |
15
+ echo "Test c ${{ github.workflow }} "
16
+ echo "Test a github.event.workflow_run.conclusion ${{ github.event.workflow_run.conclusion }}"
17
+
18
+ concurrency :
19
+ group : ${{ github.workflow }}-c-${{ github.event.pull_request.number || github.ref_name }}-${{ inputs.repository }}-${{ github.event_name == 'workflow_dispatch' }}-${{ inputs.job-name }}
20
+ cancel-in-progress : true
You can’t perform that action at this time.
0 commit comments