From 9bb463ab0e721c1b00723589455a00c10904e09e Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 9 Jan 2024 23:13:39 -0800 Subject: [PATCH] Add third_party/ to CI workflow paths This adds the third_party/ directory to the list of paths that will trigger a CI workflow when changed. Not all updates to third-party dependencies will necessarily change code, but we bump dependencies infrequently so there's not much of a problem with triggering CI on every change to third_party/. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab95e387..1cc1d393 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,7 @@ on: - "desktop_version/src/**.cpp" - "desktop_version/src/**.c" - "desktop_version/src/**.h" + - "third_party/**" - ".github/workflows/ci.yml" pull_request: paths: @@ -16,6 +17,7 @@ on: - "desktop_version/src/**.cpp" - "desktop_version/src/**.c" - "desktop_version/src/**.h" + - "third_party/**" - ".github/workflows/ci.yml" env: