mirror of
https://github.com/cmur2/miflorad.git
synced 2024-12-22 02:54:24 +01:00
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
{
|
|
extends: [
|
|
"config:base",
|
|
":dependencyDashboard",
|
|
":prHourlyLimitNone",
|
|
":prConcurrentLimitNone",
|
|
":label(dependency-upgrade)",
|
|
],
|
|
schedule: ["before 8am on thursday"],
|
|
branchPrefix: "renovate-",
|
|
dependencyDashboardHeader: "View repository job log [here](https://app.renovatebot.com/dashboard#github/cmur2/miflorad).",
|
|
separateMinorPatch: true,
|
|
commitMessagePrefix: "module: ",
|
|
commitMessageAction: "update",
|
|
commitMessageTopic: "{{depName}}",
|
|
commitMessageExtra: "to {{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}",
|
|
packageRules: [
|
|
// Commit message formats
|
|
{
|
|
matchManagers: ["github-actions"],
|
|
commitMessagePrefix: "ci: ",
|
|
},
|
|
// less noisy updates
|
|
{
|
|
packageNames: [
|
|
"github.com/currantlabs/gatt",
|
|
"github.com/muka/ble",
|
|
"github.com/muka/go-bluetooth",
|
|
],
|
|
extends: ["schedule:weekly"],
|
|
},
|
|
{
|
|
packageNames: [
|
|
"github.com/coreos/go-systemd",
|
|
"github.com/mgutz/ansi",
|
|
"github.com/mgutz/logxi",
|
|
"golang.org/x/net",
|
|
],
|
|
extends: ["schedule:monthly"],
|
|
},
|
|
],
|
|
regexManagers: [],
|
|
}
|
|
|