Compare commits

..

1 commit

Author SHA1 Message Date
d68eefa08f
chore(deps): update rust crate bincode to v2
Some checks failed
build/linux Build for the target platform: linux
build/msvc Build for the target platform: msvc
lint/clippy Checking for common mistakes and opportunities for code improvement
2025-03-12 11:04:23 +00:00
2 changed files with 2 additions and 10 deletions

View file

@ -26,11 +26,7 @@ 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")
branch=$(git rev-parse --abbrev-ref $ref) ref=$(git rev-parse --abbrev-ref $ref)-$(git rev-parse --short $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'"

View file

@ -7,9 +7,5 @@
":rebaseStalePrs" ":rebaseStalePrs"
], ],
"prConcurrentLimit": 10, "prConcurrentLimit": 10,
"branchPrefix": "renovate/", "branchPrefix": "renovate/"
"baseBranches": [
"$default",
"/^release\\/.*/"
]
} }