[github][action] skip building if docs/ or only .md files are touched

[skip ci]
This commit is contained in:
Travis Geiselbrecht
2025-07-29 00:29:55 -07:00
parent 17cef2e44d
commit 5cd783b831
2 changed files with 8 additions and 0 deletions

View File

@@ -7,6 +7,10 @@ on:
push:
branches-ignore:
- 'wip/**'
- 'docs/**' # Skip builds for documentation branches
paths-ignore:
- '**.md' # Skip builds when only markdown files change
- 'docs/**' # Skip builds for docs directory changes
jobs:
build:

View File

@@ -7,6 +7,10 @@ on:
push:
branches-ignore:
- 'wip/**'
- 'docs/**' # Skip builds for documentation branches
paths-ignore:
- '**.md' # Skip builds when only markdown files change
- 'docs/**' # Skip builds for docs directory changes
jobs:
build: