Compare commits

...

2 Commits

Author SHA1 Message Date
CodeShell
871a4faf23
Merge d09a9667498ac6663d7239bccc204a203acabf9a into 881e9203c1cec2f0cbdb25978b7242fe5cee8c9f 2026-05-06 23:42:28 +01: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: