From 119b1a5dbb80a320373fd1c82b2db621990c26d9 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Tue, 19 Nov 2024 13:38:11 -0600 Subject: [PATCH] Closes: #17795 - Add concurrency to CI (#18042) * Closes: #17795 - Add concurrency to CI * Add comment to demonstrate functionality --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3b4876c3..622c8ad7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,11 @@ on: permissions: contents: read +# Add concurrency group to control job running +concurrency: + group: ${{ github.event_name }}-${{ github.ref }}-${{ github.actor }} + cancel-in-progress: true + jobs: build: runs-on: ubuntu-latest