Skip to content

Commit

Permalink
Remove top level concurrency limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Sep 28, 2024
1 parent 1ed1090 commit 41d6d52
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:
branches:
- main

concurrency:
group: ci-${{ github.ref_name }}

jobs:
lint-python:
name: Lint Python
Expand Down Expand Up @@ -183,6 +180,8 @@ jobs:
- lint-docs
permissions:
contents: write
concurrency:
group: publish-docs
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -213,6 +212,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
permissions:
contents: write
concurrency:
group: publish-github
needs:
- build-python
- coverage-python
Expand Down Expand Up @@ -247,6 +248,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
concurrency:
group: publish-pypi
needs:
- build-python
- coverage-python
Expand Down

0 comments on commit 41d6d52

Please sign in to comment.