anyone remember why we turned off concurrency for ci.yml?

This commit is contained in:
Jacob Heider 2023-10-06 17:33:50 -04:00
parent 7076663a24
commit 27043fa2d6
No known key found for this signature in database
GPG key ID: 51E3FD0EE62677B6

View file

@ -1,8 +1,12 @@
name: ci
run-name: 'ci: ${{ github.event.pull_request.title }}'
run-name: "ci: ${{ github.event.pull_request.title }}"
on: pull_request
concurrency:
group: ${{ github.event.pull_request.head.ref }}
cancel-in-progress: true
jobs:
get-projects:
runs-on: ubuntu-latest
@ -26,10 +30,10 @@ jobs:
fail-fast: false
matrix:
platform:
- darwin+x86-64
- linux+x86-64
- darwin+aarch64
- linux+aarch64
- darwin+x86-64
- linux+x86-64
- darwin+aarch64
- linux+aarch64
needs: [get-projects]
uses: ./.github/workflows/build.yml
name: ${{ matrix.platform }}