ci: don't trigger on documentation-only commits

This commit is contained in:
Anonymous Maarten 2026-06-16 22:30:14 +02:00 committed by GitHub
parent 0c161c9e9c
commit ae3869bf85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,13 @@
name: 'Build (All)'
on: [push, pull_request]
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}