Skip CI if changes are limited to non-code paths

This commit is contained in:
Jeremy Stretch 2024-05-30 08:37:24 -04:00
parent 67165a9f91
commit a3c4984623

View File

@ -1,7 +1,18 @@
name: CI
on: [push, pull_request]
on:
push:
paths-ignore:
- 'contrib/**'
- 'docs/**'
pull_request:
paths-ignore:
- 'contrib/**'
- 'docs/**'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest