Merge pull request #14496 from Jason2866/workflow

rename, add concurrency to github actions build devel
This commit is contained in:
Jason2866 2022-01-18 14:54:37 +01:00 committed by GitHub
commit 03f3e4116e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -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