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
This commit is contained in:
CodeShell 2026-03-27 22:04:41 +01:00 committed by GitHub
parent ef16efca12
commit d09a966749
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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