ci: only run one instance of each workflow (#26036)

only allow one running workflow per event for each branch
pull/26047/head
Cameron Clough 3 years ago committed by GitHub
parent aa3dc7acbe
commit 03a065160e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .github/workflows/selfdrive_tests.yaml
  2. 5
      .github/workflows/tools_tests.yaml

@ -1,10 +1,15 @@
name: selfdrive
on:
push:
branches-ignore:
- 'testing-closet*'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
env:
BASE_IMAGE: openpilot-base
CL_BASE_IMAGE: openpilot-base-cl

@ -1,8 +1,13 @@
name: tools
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
env:
BASE_IMAGE: openpilot-base
CL_BASE_IMAGE: openpilot-base-cl

Loading…
Cancel
Save