From 88c93b5fd3e41a6a01c208934d9cd0945b17e595 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 8 Mar 2024 12:54:37 -0600 Subject: [PATCH] ci: Updates to push/PR paths for builds - Remove schemas because there doesn't seem to be any jobs that operate on these files. I don't remember the reason that it was added in the first place; but can deal with that later if I notice something wrong. - Add props/targets files so that we rebuild when we update package versions, etc. --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28e7e0a9..52ff3ef1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,9 +9,10 @@ on: - ".github/workflows/reusable-build.yml" - "src/**" - "tests/**" - - "schemas/**" - "docker/**" - "ci/**" + - "**.props" + - "**.targets" pull_request: paths: @@ -20,9 +21,10 @@ on: - ".github/workflows/reusable-build.yml" - "src/**" - "tests/**" - - "schemas/**" - "docker/**" - "ci/**" + - "**.props" + - "**.targets" jobs: #############################################