chore: update workflows to ignore changes in docs directory (#11518)

* chore: update workflows to ignore changes in docs directory

Added paths-ignore configuration to CodeQL, preview, and test workflows to prevent unnecessary runs when only documentation files are modified.

* chore: remove paths-ignore for docs in preview workflow
This commit is contained in:
David Höck 2025-06-10 13:08:29 +02:00 committed by GitHub
parent 930eefd758
commit 1391b5a789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -3,8 +3,12 @@ name: "CodeQL"
on:
push:
branches: ["master"]
paths-ignore:
- "docs/**"
pull_request:
branches: ["master"]
paths-ignore:
- "docs/**"
schedule:
- cron: "21 14 * * 2"

View File

@ -7,8 +7,12 @@ name: test
on:
push:
branches: ["**"]
paths-ignore:
- "docs/**"
pull_request:
branches: ["master"]
paths-ignore:
- "docs/**"
jobs:
formatting: