Skip to content

Commit 91e2be1

Browse files
authored
[CI] add job name (#71353)
* test=document_fix * test=document_fix
1 parent d25caa5 commit 91e2be1

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ env:
1515
COMMIT_ID: ${{ github.event.pull_request.head.sha }}
1616

1717
jobs:
18-
Clone:
19-
name: Clone
18+
clone:
19+
name: Clone-linux
2020
uses: ./.github/workflows/_Clone-linux.yml
2121

22-
SOT:
22+
sot:
2323
name: PR-CI-SOT
2424
uses: ./.github/workflows/_SOT.yml
25-
needs: Clone
25+
needs: clone
2626

2727
# Py3:
2828
# uses: ./.github/workflows/_Py3.yml

.github/workflows/CheckPRTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
check:
10-
name: Check PR Template
10+
name: Check
1111
runs-on: ubuntu-latest
1212
permissions:
1313
contents: read

.github/workflows/Codestyle-Check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
check-bypass:
9-
name: Check bypass
9+
name: Check bypass for codestyle
1010
uses: ./.github/workflows/check-bypass.yml
1111
with:
1212
workflow-name: 'codestyle'

.github/workflows/_SOT.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ defaults:
1717

1818
jobs:
1919
check-bypass:
20+
name: Check bypass for SOT
2021
uses: ./.github/workflows/check-bypass.yml
2122
with:
2223
workflow-name: 'sot'
2324
secrets:
2425
github-token: ${{ secrets.GITHUB_TOKEN }}
2526

2627
build-and-test:
28+
name: Build and Test
2729
needs: check-bypass
2830
if: ${{ github.repository_owner == 'PaddlePaddle' && needs.check-bypass.outputs.can-skip != 'true' }}
2931
runs-on:

.github/workflows/check-bypass.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
check-bypass:
17-
name: Check Bypass
17+
name: Check bypass
1818
runs-on: ubuntu-latest
1919
permissions:
2020
contents: read

0 commit comments

Comments
 (0)