Skip CI build jobs on documentation-only changes (#1768)

* feat: don't build on PRs that only change documents

* fix: ignore docs/** on push
This commit is contained in:
Giorgio Mendieta
2026-05-28 07:39:30 +02:00
committed by GitHub
parent 42d9dd23c0
commit e7e04b7c15
+5
View File
@@ -5,7 +5,12 @@ on:
paths-ignore:
- '*.md'
- '*LICENSE'
- 'docs/**'
pull_request:
paths-ignore:
- '*.md'
- '*LICENSE'
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.pull_request.number) || format('run-{0}', github.run_id) }}