Don't execute CI builds (Github actions) when no build inputs are changed

This commit is contained in:
Zahary Karadjov 2021-04-30 23:22:37 +03:00 committed by zah
parent e60dd8e4f6
commit faebe3470c
1 changed files with 5 additions and 1 deletions

View File

@ -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: