From faf36708508dc40ef689ef99588e7e747f04aa23 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Wed, 23 Sep 2020 14:50:48 +0200 Subject: [PATCH] ci: Don't trigger build on certain paths Makes no sense for updates to issue templates, the funding config and readme. Also exclude docker folder, as changes will not affect the build until someone builds & pushes updated images. Do not exclude the LICENSE file however, as it gets packaged in CI runs. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8b435f31..9a1f1f0ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,12 @@ on: push: branches: - master + paths-ignore: + - '.github/ISSUE_TEMPLATE/**' + - '.github/FUNDING.yml' + - 'docker/**' + - 'CONTRIBUTING.md' + - 'README.md' env: DOWNLOAD_TOOL: curl -fLOSs --retry 3