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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ permissions:

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
# Keep main CI runs alive so every successful main merge can trigger production deploy.
# Pull request runs still cancel superseded commits for faster feedback.
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
changes:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ concurrency:
cancel-in-progress: false

jobs:
# Gate only on the GitHub Actions CI workflow result. SonarCloud is a
# separate GitHub App check and must not suppress production deploys.
deploy:
if: >-
github.event_name == 'workflow_dispatch' ||
Expand Down
Loading
Loading