ci: ignore changes to docker in build and code quality workflows

This commit is contained in:
tigattack
2025-10-02 17:29:25 +01:00
parent 5dc3e8ba81
commit 0e049ec3d5
2 changed files with 7 additions and 0 deletions

View File

@@ -4,6 +4,9 @@ on:
branches:
- main
- dev
paths-ignore:
- 'docker/**'
jobs:
deploy:
runs-on: self-hosted

View File

@@ -2,7 +2,11 @@ name: Code quality
on:
push:
paths-ignore:
- 'docker/**'
pull_request:
paths-ignore:
- 'docker/**'
jobs:
check: