ci: don't cancel concurrent workflows for master branch (#26047)

don't cancel for master branch
pull/26048/head
Cameron Clough 3 years ago committed by GitHub
parent ac88ad871a
commit 03f06b0e32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/selfdrive_tests.yaml

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

Loading…
Cancel
Save