Skip to content

Commit

Permalink
prevent concurrent github workflow runs
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Aug 28, 2023
1 parent f64e5ac commit 0f68ca1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

name: Lint
on: [push, pull_request]
concurrency: ci-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sphinx2ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
push:
branches: [ master ]

concurrency: ci-${{ github.ref }}

jobs:
build:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

name: Unit tests
on: [push, pull_request]
concurrency: ci-${{ github.ref }}
jobs:
build:
strategy:
Expand Down

0 comments on commit 0f68ca1

Please sign in to comment.