Skip to content

Commit

Permalink
fix: prevent concurrent auto-commits
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Mar 1, 2024
1 parent 62ece2f commit 4babab4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Build linux-x86_64 dependencies

on: [push, workflow_dispatch]

# Prevent concurrent auto-commits
concurrency:
group: auto-commit

jobs:
build:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-macosx-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
types:
- completed

# Prevent concurrent auto-commits
concurrency:
group: auto-commit

jobs:
build:
runs-on: macos-14
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-macosx-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
types:
- completed

# Prevent concurrent auto-commits
concurrency:
group: auto-commit

jobs:
build:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-win32-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
types:
- completed

# Prevent concurrent auto-commits
concurrency:
group: auto-commit

jobs:
build:
runs-on: windows-2019
Expand Down

0 comments on commit 4babab4

Please sign in to comment.