CI: Update trigger paths for desktop workflows (#6223)

* update trigger paths

* change to include paths trigger pattern

* refine selection
This commit is contained in:
tooomm 2025-10-05 16:51:06 +02:00 committed by GitHub
parent 9c58e6f90f
commit c25b153185
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 36 additions and 17 deletions

View file

@ -9,20 +9,31 @@ on:
push: push:
branches: branches:
- master - master
paths-ignore: paths:
- '**.md' - '*/**' # matches all files not in root
- 'webclient/**' - '!**.md'
- '.github/workflows/web-*.yml' - '!.github/**'
- '.github/workflows/translations-*.yml' - '!.husky/**'
- '.github/workflows/docker-release.yml' - '!.tx/**'
- '!doc/**'
- '!webclient/**'
- '.github/workflows/desktop-build.yml'
- 'CMakeLists.txt'
- 'vcpkg.json'
tags: tags:
- '*' - '*'
pull_request: pull_request:
paths-ignore: paths:
- '**.md' - '*/**' # matches all files not in root
- 'webclient/**' - '!**.md'
- '.github/workflows/web-*.yml' - '!.github/**'
- '.github/workflows/translations-*.yml' - '!.husky/**'
- '!.tx/**'
- '!doc/**'
- '!webclient/**'
- '.github/workflows/desktop-build.yml'
- 'CMakeLists.txt'
- 'vcpkg.json'
# Cancel earlier, unfinished runs of this workflow on the same branch (unless on master) # Cancel earlier, unfinished runs of this workflow on the same branch (unless on master)
concurrency: concurrency:

View file

@ -2,12 +2,20 @@ name: Code Style (C++)
on: on:
pull_request: pull_request:
paths-ignore: paths:
- '**.md' - '*/**' # matches all files not in root
- 'webclient/**' - '!**.md'
- '.github/workflows/web-*.yml' - '!.ci/**'
- '.github/workflows/translations-*.yml' - '!.github/**'
- '.github/workflows/docker-release.yml' - '!.husky'
- '!.tx'
- '!doc/**'
- '!webclient/**'
- '.github/workflows/desktop-lint.yml'
- '.ci/lint_cpp.sh'
- '.clang-format'
- '.cmake-format.json'
- 'format.sh'
jobs: jobs:
format: format: