We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ecc2e commit 92c2049Copy full SHA for 92c2049
1 file changed
.github/workflows/maintenance-rewrite-kernel-patches.yml
@@ -48,7 +48,7 @@ jobs:
48
git clean -fd
49
else
50
# No repo: clone it
51
- 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}" .
52
git checkout "$REF_NAME"
53
fi
54
@@ -66,10 +66,10 @@ jobs:
66
set -euo pipefail
67
if git diff --quiet; then
68
echo "has_changes=false" >> "$GITHUB_OUTPUT"
69
- echo "::notice::No changes detected after rewrite-kernel-patches"
+ echo "::notice::No changes detected after ${WHATTODO}"
70
71
echo "has_changes=true" >> "$GITHUB_OUTPUT"
72
- echo "::notice::Changes detected after rewrite-kernel-patches - PR will be created"
+ echo "::notice::Changes detected after ${WHATTODO} - PR will be created"
73
74
75
- name: Build PR body
0 commit comments