From 1c862dd227ffa49637067ddfcba936627854c30b Mon Sep 17 00:00:00 2001 From: Marcin Kaciuba Date: Tue, 1 Aug 2023 15:03:30 +0200 Subject: [PATCH] chore: don't allow to run build more then 1 --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89720d63..930d88ab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,10 @@ name: Build + +# Only one instance of this job can be running +concurrency: + group: build-and-test + cancel-in-progress: true + on: pull_request: branches: [ '*' ]