Skip to content
Open
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: 5 additions & 1 deletion .github/workflows/studio-ui-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Never on main: pushes land in bursts, so cancelling superseded runs there means
# a deterministic failure can go unreported for as long as the bursts continue.
# The collapsed-row break below sat on main for 14 hours behind four cancelled
# runs. On a PR branch cancelling is still what you want.
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

permissions:
contents: read
Expand Down
Loading