Skip to content

Commit

Permalink
add limits to concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Aug 21, 2024
1 parent 294da03 commit 20bf35d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/designs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
- default
- tiny

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

name: 'Run Gallery Designs'

jobs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/general_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
# Manual Dispatch
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
python:
name: Python CI
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
# Manual Dispatch
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint_python:
name: Lint Python Code
Expand Down

0 comments on commit 20bf35d

Please sign in to comment.