From 89fe24240548456477870b2a627cd8021fea1e39 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 14 Sep 2026 11:51:06 +0300 Subject: [PATCH] ci : trigger self-hosted CI on changes to ci/run.sh (#28859) The workflow's push/pull_request path filters did not include the ci/run.sh script that all of its jobs execute, so changes to it never re-triggered the self-hosted CI. Assisted-by: pi:llama.cpp/Qwen3.8-27B --- .github/workflows/build-self-hosted.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-self-hosted.yml b/.github/workflows/build-self-hosted.yml index c7f992540b..2e05988bf7 100644 --- a/.github/workflows/build-self-hosted.yml +++ b/.github/workflows/build-self-hosted.yml @@ -7,6 +7,7 @@ on: - master paths: [ '.github/workflows/build-self-hosted.yml', + 'ci/run.sh', '**/CMakeLists.txt', '**/.cmake', '**/*.h', @@ -27,6 +28,7 @@ on: types: [opened, synchronize, reopened] paths: [ '.github/workflows/build-self-hosted.yml', + 'ci/run.sh', '**/CMakeLists.txt', '**/.cmake', '**/*.h',