Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ env:
COMMIT_ID: ${{ github.event.pull_request.head.sha }}

jobs:
Clone:
name: Clone
clone:
name: Clone-linux
uses: ./.github/workflows/_Clone-linux.yml

SOT:
sot:
name: PR-CI-SOT
uses: ./.github/workflows/_SOT.yml
needs: Clone
needs: clone

# Py3:
# uses: ./.github/workflows/_Py3.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CheckPRTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
check:
name: Check PR Template
name: Check
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Codestyle-Check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
check-bypass:
name: Check bypass
name: Check bypass for codestyle
uses: ./.github/workflows/check-bypass.yml
with:
workflow-name: 'codestyle'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/_SOT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ defaults:

jobs:
check-bypass:
name: Check bypass for SOT
uses: ./.github/workflows/check-bypass.yml
with:
workflow-name: 'sot'
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}

build-and-test:
name: Build and Test
needs: check-bypass
if: ${{ github.repository_owner == 'PaddlePaddle' && needs.check-bypass.outputs.can-skip != 'true' }}
runs-on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-bypass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
check-bypass:
name: Check Bypass
name: Check bypass
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down