From bcfa84572f0072f1369212237cef130719378435 Mon Sep 17 00:00:00 2001 From: kekrby Date: Sun, 2 Oct 2022 17:58:59 +0300 Subject: [PATCH] CI: allow only one build to take place at a time This will prevent the CI from building the same packages twice when a build gets triggered while there are other ongoing builds. --- .github/workflows/CI.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2120940..02d68d0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,6 +10,8 @@ on: jobs: CI: runs-on: ubuntu-latest + concurrency: + group: CI steps: - name: Checkout uses: actions/checkout@v3