From: Petr Štetiar Date: Tue, 23 May 2023 12:27:05 +0000 (+0200) Subject: ci: tools: run the job on changes in include directory as well X-Git-Tag: v23.05.0-rc1~64 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7d226e13e249f72ec8154cf8974ecbf1696ed7e2;p=openwrt%2Fstaging%2Fhauke.git ci: tools: run the job on changes in include directory as well In order to prevent regressions like with #12617. Signed-off-by: Petr Štetiar (cherry picked from commit 71ca2a31546d5f14faac03838bf700cf22f85215) --- diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index b9d712c2a6..76ebdc664b 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -3,11 +3,13 @@ name: Build host tools on: pull_request: paths: + - 'include/**' - 'tools/**' - '.github/workflows/build-tools.yml' - '.github/workflows/tools.yml' push: paths: + - 'include/**' - 'tools/**' - '.github/workflows/build-tools.yml' - '.github/workflows/tools.yml'