.github: Skip CI on GitHub meta and README changes

This commit is contained in:
Matt Borgerson 2021-09-14 16:52:41 -07:00
parent fe4929c146
commit b7dba46621
1 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,16 @@
name: Build
on: [push, pull_request]
on:
push:
paths-ignore:
- '.github/**'
- '!.github/workflows/**'
- 'README.md'
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/**'
- 'README.md'
jobs:
Init: