Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/analyze-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
# The branches below must be a subset of the branches above
branches: [ master ]

# Cancel long-running jobs when a new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
datadog-static-analyzer:
name: Analyze changes with DataDog Static Analyzer
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/check-pull-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- master
- release/v*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
check_pull_requests:
name: Check pull requests
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-download-releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
types:
- released
workflow_dispatch:
concurrency: # Avoid running multiple instances to prevent asset conflicts
group: ${{ github.workflow }}
jobs:
update-releases:
permissions:
Expand Down
Loading