diff options
| author | Ha Thach <[email protected]> | 2026-04-03 16:52:16 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-03 16:52:16 +0700 |
| commit | c790ac4071ba6ebf9f09020bd52e88416efecaa1 (patch) | |
| tree | 6166b9fc27733aad1741983697e45212f36c39c7 | |
| parent | ff8e6cce6ef0df8b86366b487f32defca1600532 (diff) | |
| parent | ed3318f927a8cc2895344665f99a49dfc3b01461 (diff) | |
Merge pull request #3580 from michael-membrowse/fix/merge_to_master_build
ci: don't cancel build on merge to master
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f549bb1e4..60f4c7ca1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} env: HIL_JSON: test/hil/tinyusb.json |
