Skip to content

Commit 703faf3

Browse files
committed
test
1 parent c643ff7 commit 703faf3

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.github/workflows/test_b.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- name: Test b
1111
run: |
12-
echo "Test b ${github.workflow}"
12+
echo "Test b ${{ github.workflow }}"
1313
1414
concurrency:
1515
group: ${{ github.workflow }}-b-${{ github.event.pull_request.number || github.ref_name }}-${{ inputs.repository }}-${{ github.event_name == 'workflow_dispatch' }}-${{ inputs.job-name }}

.github/workflows/test_c.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- name: Test c
1111
run: |
12-
echo "Test c ${github.workflow} "
12+
echo "Test c ${{ github.workflow }} "
1313
1414
concurrency:
1515
group: ${{ github.workflow }}-c-${{ github.event.pull_request.number || github.ref_name }}-${{ inputs.repository }}-${{ github.event_name == 'workflow_dispatch' }}-${{ inputs.job-name }}

.github/workflows/test_d.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

0 commit comments

Comments
 (0)