From 59345d8ac6e76a8883626a5e6c3354afa64f0120 Mon Sep 17 00:00:00 2001 From: Max Hilbrunner Date: Sat, 13 May 2023 22:25:12 +0200 Subject: [PATCH] Docs CI: Limit concurrent builds --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cff744615..7dbec5c5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,13 @@ name: Continuous integration + on: push: pull_request: +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: build: runs-on: ubuntu-20.04