Compare commits
5 commits
d68eefa08f
...
2ca9524557
Author | SHA1 | Date | |
---|---|---|---|
2ca9524557 | |||
4d0762c0ba | |||
752291fe2d | |||
71f945a96c | |||
d15f533e19 |
2 changed files with 10 additions and 2 deletions
|
@ -26,7 +26,11 @@ if [ -n "$PR" ]; then
|
||||||
ref="pr-$(echo "$PR" | jq '.number')-$(git rev-parse --short "$(cat .git/ref || echo "HEAD")" 2>/dev/null || echo 'manual')"
|
ref="pr-$(echo "$PR" | jq '.number')-$(git rev-parse --short "$(cat .git/ref || echo "HEAD")" 2>/dev/null || echo 'manual')"
|
||||||
else
|
else
|
||||||
ref=$(cat .git/ref || echo "HEAD")
|
ref=$(cat .git/ref || echo "HEAD")
|
||||||
ref=$(git rev-parse --abbrev-ref $ref)-$(git rev-parse --short $ref)
|
branch=$(git rev-parse --abbrev-ref $ref)
|
||||||
|
if [ -z "$branch" ]; then
|
||||||
|
branch=$(cat .git/ref)
|
||||||
|
fi
|
||||||
|
ref=${branch}-$(git rev-parse --short $ref)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
title "Version: '$ref'"
|
title "Version: '$ref'"
|
||||||
|
|
|
@ -7,5 +7,9 @@
|
||||||
":rebaseStalePrs"
|
":rebaseStalePrs"
|
||||||
],
|
],
|
||||||
"prConcurrentLimit": 10,
|
"prConcurrentLimit": 10,
|
||||||
"branchPrefix": "renovate/"
|
"branchPrefix": "renovate/",
|
||||||
|
"baseBranches": [
|
||||||
|
"$default",
|
||||||
|
"/^release\\/.*/"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue