ci: disable concurrency for master branch (#26052)

disable concurrency for master branch
pull/25947/head^2
Cameron Clough 3 years ago committed by GitHub
parent 23e78da6a4
commit 077f0e0a44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/selfdrive_tests.yaml
  2. 4
      .github/workflows/tools_tests.yaml

@ -7,8 +7,8 @@ on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
group: ${{ github.workflow }}-${{ github.ref != 'refs/heads/master' && github.ref || github.run_id }}-${{ github.event_name }}
cancel-in-progress: true
env:
BASE_IMAGE: openpilot-base

@ -5,8 +5,8 @@ on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
group: ${{ github.workflow }}-${{ github.ref != 'refs/heads/master' && github.ref || github.run_id }}-${{ github.event_name }}
cancel-in-progress: true
env:
BASE_IMAGE: openpilot-base

Loading…
Cancel
Save