From 9d53d55a18cb7631618d5ab32ad53249d7a98e74 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Sun, 21 Apr 2024 22:24:19 -0400 Subject: [PATCH] feat(test): limit gh workflow concurrency (#584) --- .github/workflows/pytest.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index af4a353ab..c1bd909b5 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -12,6 +12,10 @@ on: paths: - '**.py' - '**/pytest.yaml' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: test: