From faebe3470ccafca725441d3ea189d93bc34275d7 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Fri, 30 Apr 2021 23:22:37 +0300 Subject: [PATCH] Don't execute CI builds (Github actions) when no build inputs are changed --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa04039a7..00fabe488 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: