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 133eac8 commit 9a4a9a2Copy full SHA for 9a4a9a2
.github/workflows/coverage-pr-base.yml
@@ -22,9 +22,9 @@ jobs:
22
BASE_REF=refs/heads/${{ github.event.pull_request.base.ref }}
23
MERGE_REF=refs/pull/${{ github.event.pull_request.number }}/merge
24
25
- git fetch --progress --depth=1 origin "+$BASE_REF:$BASE_REF" "+$MERGE_REF:$MERGE_REF"
+ git fetch -u --progress --depth=1 origin "+$BASE_REF:$BASE_REF" "+$MERGE_REF:$MERGE_REF"
26
while [ -z "$(git merge-base "$BASE_REF" "$MERGE_REF")" ]; do
27
- git fetch -q --deepen="10" origin "$BASE_REF" "$MERGE_REF";
+ git fetch -u -q --deepen="10" origin "$BASE_REF" "$MERGE_REF";
28
done
29
30
MERGE_BASE=$(git merge-base "$BASE_REF" "$MERGE_REF")
0 commit comments