From 9dc676a32c08a915e7bbb6e64bef7627f3e8fcdb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 15 Feb 2021 16:04:51 +0100 Subject: [PATCH] Don't run GitHub CI action when other CI scripts change Avoid wasting resources when only the scripts used with AppVeyor or Travis CI change. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0f5f0075a..485034dd56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,9 @@ on: branches: - master paths-ignore: + - 'build/tools/appveyor*.bat' + - 'build/tools/before_install.sh' + - 'build/tools/travis-ci.sh' - 'distrib/**' - 'docs/**' - 'interface/**' @@ -15,6 +18,9 @@ on: branches: - master paths-ignore: + - 'build/tools/appveyor*.bat' + - 'build/tools/before_install.sh' + - 'build/tools/travis-ci.sh' - 'distrib/**' - 'docs/**' - 'interface/**'