ci: don't run on documentation updates

This commit is contained in:
nahuhh
2025-10-22 15:25:10 +00:00
parent 53b06859fc
commit 497793ae8c

View File

@@ -1,6 +1,16 @@
name: ci
on: [push, pull_request]
on:
push:
paths-ignore:
- 'doc/**'
- '**/README.md'
- '**/LICENSE'
pull_request:
paths-ignore:
- 'doc/**'
- '**/README.md'
- '**/LICENSE'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}