From d688fae569adbae519ab5eb411c2d11eaf0e24f5 Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Thu, 11 Apr 2024 11:02:15 +0200 Subject: [PATCH] chore(ci): ensure only most recent commit is executed on CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbdd9c0..b65bfd4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,10 @@ on: branches: - "main" +concurrency: + cancel-in-progress: true + group: ${{github.workflow}}-${{github.ref}} + jobs: lint: runs-on: "ubuntu-latest"