ci: skip server CI for docs-only changes (#35719)

Add path exclusions for markdown files, NOTICE.txt, and CHANGELOG.md
to the pull_request trigger. This prevents the full 60-minute CI suite
from running when a PR only changes documentation.

Exclusions added:
- server/**/*.md
- server/NOTICE.txt
- server/CHANGELOG.md

Co-authored-by: Claude <claude@anthropic.com>
This commit is contained in:
Pavel Zeman
2026-03-20 12:44:06 -04:00
committed by GitHub
co-authored by Claude
parent 8740152df7
commit a357d4f024
+3
View File
@@ -17,6 +17,9 @@ on:
- ".github/workflows/mmctl-test-template.yml"
- "!server/build/Dockerfile.buildenv"
- "!server/build/Dockerfile.buildenv-fips"
- "!server/**/*.md"
- "!server/NOTICE.txt"
- "!server/CHANGELOG.md"
concurrency:
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow, github.ref) || github.run_id }}