change to include paths trigger pattern

This commit is contained in:
tooomm 2025-10-05 12:33:23 +02:00
parent 71808891c7
commit 0530747a65
2 changed files with 27 additions and 24 deletions

View file

@ -9,25 +9,27 @@ on:
push:
branches:
- master
paths-ignore:
- '**.md'
- 'doc/**'
- 'webclient/**'
- '.github/workflows/docker-*.yml'
- '.github/workflows/documentation-*.yml'
- '.github/workflows/translations-*.yml'
- '.github/workflows/web-*.yml'
paths:
- '**'
- '!**.md'
- '!.github/**'
- '!.husky/**'
- '!.tx/**'
- '!doc/**'
- '!webclient/**'
- '.github/workflows/desktop-build.yml'
tags:
- '*'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
- 'webclient/**'
- '.github/workflows/docker-*.yml'
- '.github/workflows/documentation-*.yml'
- '.github/workflows/translations-*.yml'
- '.github/workflows/web-*.yml'
paths:
- '**'
- '!**.md'
- '!.github/**'
- '!.husky/**'
- '!.tx/**'
- '!doc/**'
- '!webclient/**'
- '.github/workflows/desktop-build.yml'
# Cancel earlier, unfinished runs of this workflow on the same branch (unless on master)
concurrency:

View file

@ -2,14 +2,15 @@ name: Code Style (C++)
on:
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
- 'webclient/**'
- '.github/workflows/docker-*.yml'
- '.github/workflows/documentation-*.yml'
- '.github/workflows/translations-*.yml'
- '.github/workflows/web-*.yml'
paths:
- '**'
- '!**.md'
- '!.github/**'
- '!.husky'
- '!.tx'
- '!doc/**'
- '!webclient/**'
- '.github/workflows/desktop-lint.yml'
jobs:
format: