diff options
author | Petr Štetiar <ynezz@true.cz> | 2023-05-23 14:27:05 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2023-05-23 17:49:57 +0200 |
commit | 71ca2a31546d5f14faac03838bf700cf22f85215 (patch) | |
tree | a10acc88c295983ebee04987bff369336fd1c666 /.github/workflows/tools.yml | |
parent | 7855378fcd7ed7cb0a223238a99bac0b8e46c380 (diff) |
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 <ynezz@true.cz>
Diffstat (limited to '.github/workflows/tools.yml')
-rw-r--r-- | .github/workflows/tools.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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' |