Skip to content

Commit

Permalink
fix(ci): job concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
natesales committed Jan 15, 2025
1 parent f8adf20 commit 40ffbf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
concurrency: ci-lint-${{ github.ref }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
test:
name: test
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
concurrency: ci-test-${{ github.ref }}
steps:
- name: Install bgpq4
run: |
Expand Down

0 comments on commit 40ffbf5

Please sign in to comment.