feat(CI): skip pch/nopch core builds on DB-only pull requests (#26716)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
sudlud
2026-07-21 13:47:22 +02:00
committed by GitHub
parent a16ef90f28
commit 91ad3ec478
2 changed files with 12 additions and 0 deletions

View File

@@ -8,6 +8,12 @@ on:
- opened
- reopened
- synchronize
# A PR that only touches data/ (SQL) leaves the C++ untouched, so there is
# nothing to compile. Dashboard CI runs on every PR unfiltered and already
# imports the SQL and starts a real worldserver, so coverage is unaffected.
# Pushes to master are not filtered and always build.
paths-ignore:
- 'data/**'
concurrency:
# One concurrency group per workflow + ref.

View File

@@ -8,6 +8,12 @@ on:
- opened
- reopened
- synchronize
# A PR that only touches data/ (SQL) leaves the C++ untouched, so there is
# nothing to compile. Dashboard CI runs on every PR unfiltered and already
# imports the SQL and starts a real worldserver, so coverage is unaffected.
# Pushes to master are not filtered and always build.
paths-ignore:
- 'data/**'
concurrency:
# One concurrency group per workflow + ref.