Skip to content

Commit

Permalink
Merge pull request #6078 from AndrewADev/ci-concurrency-groups
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Oct 2, 2023
2 parents ef1ed4f + 884840e commit 01f164d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Checks
on: [push, pull_request]

concurrency:
group: ${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true

jobs:
checks:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

concurrency:
group: ${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests-macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: macOS
on: [push, pull_request]

concurrency:
group: ${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: macos-11
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Ubuntu
on: [push, pull_request]

concurrency:
group: ${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Windows
on: [push, pull_request]

concurrency:
group: ${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: windows-latest
Expand Down

0 comments on commit 01f164d

Please sign in to comment.