From 1ddec7a4b05471ee9e518ce2f1bd517f7a26a377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20H=C3=B8jlund=20Larsen?= Date: Tue, 22 Aug 2023 15:11:39 +0200 Subject: [PATCH] Update workflow to run on push to master --- .github/workflows/linux_cmake.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux_cmake.yml b/.github/workflows/linux_cmake.yml index 156bfd2..cbf155c 100644 --- a/.github/workflows/linux_cmake.yml +++ b/.github/workflows/linux_cmake.yml @@ -8,7 +8,7 @@ name: Linux Cmake push: branches: - master - pull_request: + pull_request: null env: EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }} jobs: @@ -17,3 +17,6 @@ jobs: uses: steinwurf/linux-cmake-action/.github/workflows/action.yml@4.0.0 with: extra_resolve_options: $EXTRA_RESOLVE_OPTIONS +concurrency: + group: ${{ github.workflow }}-${{ github.ref || github.run_id }} + cancel-in-progress: true