Only run Docker CD workflow if any images have changed (#32954)

This commit is contained in:
Michael Telatynski 2026-04-02 14:07:30 +01:00 committed by GitHub
parent f18eb24144
commit 7bbd86ca10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,13 @@ name: CD # Continuous Delivery
on:
push:
branches: [master, staging, develop]
paths:
- "**/Dockerfile"
- "**/dockerbuild"
- "**/docker"
- "**/docker-*"
- "pnpm-lock.yaml"
concurrency: ${{ github.workflow }}-${{ github.ref_name }}
permissions: {}