Don't execute CI builds (Github actions) when no build inputs are changed
This commit is contained in:
parent
e60dd8e4f6
commit
faebe3470c
|
@ -1,5 +1,9 @@
|
|||
name: CI
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
paths-ignore: ['media/**', 'docs/**', '**/*.md']
|
||||
pull_request:
|
||||
paths-ignore: ['media/**', 'docs/**', '**/*.md']
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in New Issue