From ea22abd68f8d1da456c7fb557ba7f4cba95b3f8a Mon Sep 17 00:00:00 2001 From: EvilOlaf Date: Fri, 6 Feb 2026 05:39:46 +0000 Subject: [PATCH] a few more untested fixes --- .github/workflows/maintenance-rewrite-kernel-patches.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maintenance-rewrite-kernel-patches.yml b/.github/workflows/maintenance-rewrite-kernel-patches.yml index 9f1b55699a..095a3c8b8f 100644 --- a/.github/workflows/maintenance-rewrite-kernel-patches.yml +++ b/.github/workflows/maintenance-rewrite-kernel-patches.yml @@ -48,7 +48,7 @@ jobs: git clean -fd else # No repo: clone it - git clone --depth 1 --filter=blob:none "https://github.com/${REPO}" . + git clone --depth 1 --filter=blob:none -b "$REF_NAME" "https://github.com/${REPO}" . git checkout "$REF_NAME" fi @@ -66,10 +66,10 @@ jobs: set -euo pipefail if git diff --quiet; then echo "has_changes=false" >> "$GITHUB_OUTPUT" - echo "::notice::No changes detected after rewrite-kernel-patches" + echo "::notice::No changes detected after ${WHATTODO}" else echo "has_changes=true" >> "$GITHUB_OUTPUT" - echo "::notice::Changes detected after rewrite-kernel-patches - PR will be created" + echo "::notice::Changes detected after ${WHATTODO} - PR will be created" fi - name: Build PR body