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 bc57a19 commit 610fcbbCopy full SHA for 610fcbb
.github/workflows/kernel-build-and-test-x86_64.yml
@@ -409,8 +409,8 @@ jobs:
409
run: |
410
BASE_BRANCH="${{ needs.compare-results.outputs.base_branch }}"
411
if [ -n "$BASE_BRANCH" ]; then
412
- # Fetch just the base branch tip (shallow)
413
- git fetch --depth=1 origin "$BASE_BRANCH:refs/remotes/origin/$BASE_BRANCH" || true
+ # Fetch base branch with enough history to find common ancestor
+ git fetch --depth=200 origin "$BASE_BRANCH:refs/remotes/origin/$BASE_BRANCH" || true
414
echo "Fetched base branch: $BASE_BRANCH"
415
fi
416
0 commit comments