document what the concurency does in devcontainer builds

pull/7102/head
Nils Dijk 2023-08-22 12:29:51 +00:00
parent b21c57c8ca
commit 807a4d602c
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
name: "Build devcontainer"
# Since building of containers can be quite time consuming, and take up some storage,
# there is no need to finish a build for a tag if new changes are concurrently being made.
# This cancels any previous builds for the same tag, and only the latest one will be kept.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true