From 97b127297f065a06ff70bd5ab8e698b4158c08be Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 10 Mar 2020 15:59:08 -0700 Subject: [PATCH] Add path filtering to pull requests Also include `./bin` directory contents --- .github/workflows/testing.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 9cd017ec8..95591be6a 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -4,12 +4,18 @@ on: - master - 'test-*' paths: + - 'bin/**' - 'lib/**' - 'plugins/**' - 'test/**' pull_request: branches: - master + paths: + - 'bin/**' + - 'lib/**' + - 'plugins/**' + - 'test/**' jobs: unit-tests: