ci:concurrency config added

This commit is contained in:
luoliwoshang
2025-09-04 19:09:30 +08:00
parent 6588f36123
commit 7ae6686f6b
6 changed files with 24 additions and 0 deletions

View File

@@ -6,6 +6,10 @@ on:
pull_request: pull_request:
branches: ["**"] branches: ["**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
doc_verify: doc_verify:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -6,6 +6,10 @@ on:
pull_request: pull_request:
branches: ["**"] branches: ["**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
fmt: fmt:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -9,6 +9,10 @@ on:
pull_request: pull_request:
branches: ["**"] branches: ["**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
test: test:
continue-on-error: true continue-on-error: true

View File

@@ -9,6 +9,10 @@ on:
pull_request: pull_request:
branches: ["**"] branches: ["**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
download-model: download-model:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -5,6 +5,10 @@ on:
tags: tags:
- "*" - "*"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
populate-darwin-sysroot: populate-darwin-sysroot:
runs-on: macos-latest runs-on: macos-latest

View File

@@ -7,6 +7,10 @@ on:
pull_request: pull_request:
branches: ["**"] branches: ["**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
llgo: llgo:
continue-on-error: true continue-on-error: true