From 76e0616d48d9dba0a2119dc2dfec29f77dfeb8fc Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Tue, 18 Jan 2022 14:42:26 +0100 Subject: [PATCH] rename, add concurrency --- .github/workflows/Tasmota_build_devel.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Tasmota_build_devel.yml b/.github/workflows/Tasmota_build_devel.yml index 57733ae99..8cb8a140e 100644 --- a/.github/workflows/Tasmota_build_devel.yml +++ b/.github/workflows/Tasmota_build_devel.yml @@ -1,4 +1,4 @@ -name: Build_firmware_development_cache +name: Build_development on: workflow_dispatch: # Manually start a workflow @@ -8,6 +8,11 @@ on: - '.github/**' # Ignore changes towards the .github directory - '**.md' # Do no build if *.md files changes +# Ensures that only one deploy task per branch/environment will run at a time. +concurrency: + group: environment-${{ github.ref }} + cancel-in-progress: true + jobs: base-images: runs-on: ubuntu-latest