diff options
| author | Yong He <yonghe@outlook.com> | 2024-02-06 17:31:57 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-06 17:31:57 -0800 |
| commit | a95b7530b782745d2778f3ea94c4ba9907991f78 (patch) | |
| tree | 87b59518b016e5dbc706e38cb5db137830a35daf /.github/workflows/macos.yml | |
| parent | 3358b3dd4680cc3f86bbd22b84c242c7f0053775 (diff) | |
CI: cancel onging jobs on commit. (#3557)
* CI: cancel onging jobs on commit.
* test change
* Fix.
Diffstat (limited to '.github/workflows/macos.yml')
| -rw-r--r-- | .github/workflows/macos.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c795a06bd..11d54a247 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -5,7 +5,9 @@ on: branches: [ master ] pull_request: branches: [ master ] - +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: build: name: MacOS Build CI |
