From 9f61f681d1e96382b86a1bbb318d19840d8fb1aa Mon Sep 17 00:00:00 2001 From: Christopher Turner Date: Wed, 30 Jul 2025 18:09:56 -0500 Subject: [PATCH 1/2] ci: Remove XTOS-make-install job from daily-tests workflow The XTOS-make-install job is removed from the daily tests workflow since the workflow is no longer present in the sof repo. Signed-off-by: Christopher Turner --- .github/workflows/daily-tests.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/daily-tests.yml b/.github/workflows/daily-tests.yml index 5ecd2b83df86..40b90b01fe8e 100644 --- a/.github/workflows/daily-tests.yml +++ b/.github/workflows/daily-tests.yml @@ -23,9 +23,6 @@ jobs: # TODO: separate "fetchPRcommits" which can't work in daily tests # uses: ./.github/workflows/codestyle.yml - XTOS-make-install: - uses: ./.github/workflows/installer.yml - zephyr-fuzz-IPC: uses: ./.github/workflows/ipc_fuzzer.yml with: From 9bff9a92e61896ebdc303020b89bd21781ef933a Mon Sep 17 00:00:00 2001 From: Christopher Turner Date: Wed, 30 Jul 2025 18:24:34 -0500 Subject: [PATCH 2/2] ci: Disables yamllint truthy rule in close-stale.yml workflow file Adds a directive to disable the 'truthy' rule in yamllint for the close-stale workflow file. This matches all other workflows in the repo. No functional changes to the workflow logic. Signed-off-by: Christopher Turner --- .github/workflows/close-stale.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/close-stale.yml b/.github/workflows/close-stale.yml index 4f4266faf892..052878a5cdd2 100644 --- a/.github/workflows/close-stale.yml +++ b/.github/workflows/close-stale.yml @@ -1,5 +1,7 @@ --- name: "Close stale issues" + +# yamllint disable-line rule:truthy on: schedule: - cron: "30 1 * * *"