From 348e16985249c610c406427027a18d4ca100a313 Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Mon, 29 Jan 2024 21:43:20 -0500 Subject: [PATCH] swap cancellation procedure --- .github/workflows/deploy-tests.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-tests.yml b/.github/workflows/deploy-tests.yml index c741e68..c63335f 100644 --- a/.github/workflows/deploy-tests.yml +++ b/.github/workflows/deploy-tests.yml @@ -3,13 +3,11 @@ name: Deploy tests on: pull_request: -jobs: - cancel-previous-runs: - runs-on: ubuntu-latest - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.11.0 +concurrency: # Cancel previous workflows on the same pull request + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true +jobs: assess-file-changes: uses: catalystneuro/tqdm_publisher/.github/workflows/assess-file-changes.yml@main