Compare commits

..

5 commits

Author SHA1 Message Date
2ca9524557
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 12:20:08 +00:00
4d0762c0ba
Merge pull request 'Fix branch name in package version' (#207) from issue/205 into master
All checks were successful
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
Reviewed-on: #207
2025-03-12 12:15:30 +00:00
752291fe2d
Merge pull request 'Explicitly define base branches' (#208) from feat/renovate into master
All checks were successful
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
Reviewed-on: #208
2025-03-12 12:15:09 +00:00
71f945a96c
Explicitly define base branches
Currently, the dependency dashboard lists a bunch of pending updates
under a section called "Other branches". I'm not sure, but this sounds
like one of the configs I extend from enables base branches other than
only the default. To test, and make it explicit, set only the branches
I really want checked.

I'm adding the `release/.*` regex for now, even though I don't have
any release process yet.
2025-03-12 13:11:01 +01:00
d15f533e19
Fix branch name in package version
All checks were successful
lint/clippy Checking for common mistakes and opportunities for code improvement
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
2025-03-12 11:52:53 +01:00
2 changed files with 10 additions and 2 deletions

View file

@ -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'"

View file

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