Skip to content

Commit

Permalink
Add concurrency limits (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Link- authored May 17, 2023
1 parent 0194439 commit 588ad47
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/publish-arc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ env:
TARGET_ORG: actions-runner-controller
TARGET_REPO: actions-runner-controller

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

jobs:
release-controller:
name: Release
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-canary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ env:
TARGET_ORG: actions-runner-controller
TARGET_REPO: actions-runner-controller

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

jobs:
canary-build:
name: Build and Publish Canary Image
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-runners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ env:
TARGET_ORG: actions-runner-controller
TARGET_REPO: actions-runner-controller

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

jobs:
build-runners:
name: Build ${{ matrix.name }}-${{ matrix.os-name }}-${{ matrix.os-version }}
Expand Down

0 comments on commit 588ad47

Please sign in to comment.