Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/on-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ name: Check code submission

on:
pull_request:
merge_group:
workflow_dispatch:

# We want the workflow to stop and yield to a new run if new code is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ github.event_name != 'merge_group' }} # Don't cancel in-progress runs for merge_group events. Cancel for other events. Original value was 'true' but was updated to accommodate merge queue usage.

jobs:
check:
Expand Down