Skip to content

Commit 8e29f59

Browse files
committed
ci: remove concurrency from workflows
The `concurrency` configuration was removed from the `bench.yaml` and `test.yaml` workflows. Additionally, `FORCE_COLOR: 1` was added to the `env` section of `docs.yaml` and `release.yaml`. This change simplifies the CI configuration by removing unnecessary concurrency settings that could potentially cause issues or unexpected behavior in certain scenarios. The `FORCE_COLOR` environment variable ensures consistent colored output in the CI logs for better readability.
1 parent 09f2d06 commit 8e29f59

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

template/.github/workflows/bench.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ on:
1616
env:
1717
FORCE_COLOR: 1
1818

19-
concurrency:
20-
group: ${{ github.workflow }} @ ${{ github.ref }}
21-
cancel-in-progress: true
22-
2319
jobs:
2420
metadata:
2521
name: Metadata

template/.github/workflows/docs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ on:
1313
pull_request:
1414
workflow_dispatch:
1515

16+
env:
17+
FORCE_COLOR: 1
18+
1619
jobs:
1720
build:
1821
name: Build

template/.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
- published
1010
workflow_dispatch:
1111

12+
env:
13+
FORCE_COLOR: 1
14+
1215
jobs:
1316
build:
1417
name: Build

template/.github/workflows/test.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ on:
1818
env:
1919
FORCE_COLOR: 1
2020

21-
concurrency:
22-
group: ${{ github.workflow }} @ ${{ github.ref }}
23-
cancel-in-progress: true
24-
2521
jobs:
2622
metadata:
2723
name: Metadata

0 commit comments

Comments
 (0)