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
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on:
- release/**
pull_request:

# Cancel in-progress runs when a new run is triggered (e.g. by a new commit)
# Only apply to PRs to ensure all commits are tested on main branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
job_build:
name: Build
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
#
name: "CodeQL"

# Cancel in-progress runs when a new run is triggered (e.g. by a new commit)
# Only apply to PRs to ensure all commits are tested on main branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

on:
push:
branches: [ master ]
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/danger.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: Danger

# Cancel in-progress runs when a new run is triggered (e.g. by a new commit)
# Only apply to PRs to ensure all commits are tested on main branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

on:
pull_request:
types: [opened, synchronize, reopened, edited, ready_for_review]
Expand Down
Loading