Compare commits

...

2 Commits

Author SHA1 Message Date
CodeShell
eed82f5a9c
Merge d09a9667498ac6663d7239bccc204a203acabf9a into 184231020c6b23ebb31e05d6732dc819987d1c84 2026-04-30 07:42:58 +02:00
CodeShell
d09a966749
ignore docs / non-source files for ci triggers
This commit adds ignores for
- markdown files
- yml files
- doc/ and subfolders
- plugins/ and subfolders
- .github/ and subfolders

For both PR and pushes
2026-03-27 22:04:41 +01:00

View File

@ -4,9 +4,22 @@ on:
push:
branches:
- '**' #every branch
paths-ignore:
- "*/*.md"
- "*/*.yml"
- "doc/**"
- "plugins/**"
- ".github/**"
pull_request:
branches:
- '**' #every branch
paths-ignore:
- "*/*.md"
- "*/*.yml"
- "doc/**"
- "plugins/**"
- ".github/**"
jobs:
setup: