Skip to content

Commit

Permalink
chore(renovate): disable lockFileMaintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Oct 23, 2024
1 parent d7a92b6 commit 136ad69
Showing 1 changed file with 40 additions and 76 deletions.
116 changes: 40 additions & 76 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,103 +1,67 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
'config:recommended',
':semanticCommits',
':semanticCommitTypeAll(chore)',
'helpers:pinGitHubActionDigests',
],
schedule: [
'before 6am on Monday',
"config:recommended",
":semanticCommits",
":semanticCommitTypeAll(chore)",
"helpers:pinGitHubActionDigests",
],
schedule: ["before 6am on Monday"],
configMigration: true,
rebaseWhen: 'behind-base-branch',
rebaseWhen: "behind-base-branch",
lockFileMaintenance: {
enabled: true,
enabled: false,
},
packageRules: [
{
groupName: 'futures crates',
groupSlug: 'futures',
matchManagers: [
'cargo',
],
matchPackageNames: [
'futures',
'futures-{/,}**',
'futures_{/,}**',
],
groupName: "futures crates",
groupSlug: "futures",
matchManagers: ["cargo"],
matchPackageNames: ["futures", "futures-{/,}**", "futures_{/,}**"],
},
{
groupName: 'serde crates',
groupSlug: 'serde',
matchManagers: [
'cargo',
],
matchPackageNames: [
'serde',
'serde-{/,}**',
'serde_{/,}**',
],
groupName: "serde crates",
groupSlug: "serde",
matchManagers: ["cargo"],
matchPackageNames: ["serde", "serde-{/,}**", "serde_{/,}**"],
},
{
groupName: 'tonic crates',
groupSlug: 'tonic',
matchManagers: [
'cargo',
],
groupName: "tonic crates",
groupSlug: "tonic",
matchManagers: ["cargo"],
matchSourceUrls: [
'https://github.com/hyperium/tonic{/,}**',
'https://github.com/tokio-rs/prost{/,}**',
"https://github.com/hyperium/tonic{/,}**",
"https://github.com/tokio-rs/prost{/,}**",
],
},
{
groupName: 'tracing crates',
groupSlug: 'tracing',
matchManagers: [
'cargo',
],
matchSourceUrls: [
'https://github.com/tokio-rs/tracing{/,}**',
],
matchPackageNames: [
'tracing-{/,}**',
'tracing_{/,}**',
],
groupName: "tracing crates",
groupSlug: "tracing",
matchManagers: ["cargo"],
matchSourceUrls: ["https://github.com/tokio-rs/tracing{/,}**"],
matchPackageNames: ["tracing-{/,}**", "tracing_{/,}**"],
},
{
groupName: 'alloy-rs core types monorepo',
groupSlug: 'alloy-core',
matchManagers: [
'cargo',
],
matchSourceUrls: [
'https://github.com/alloy-rs/core{/,}**',
],
groupName: "alloy-rs core types monorepo",
groupSlug: "alloy-core",
matchManagers: ["cargo"],
matchSourceUrls: ["https://github.com/alloy-rs/core{/,}**"],
},
{
groupName: 'async-graphql crates',
groupSlug: 'async-graphql',
matchManagers: [
'cargo',
],
matchPackageNames: [
'async-graphql',
'async-graphql-{/,}**',
],
groupName: "async-graphql crates",
groupSlug: "async-graphql",
matchManagers: ["cargo"],
matchPackageNames: ["async-graphql", "async-graphql-{/,}**"],
},
],
customManagers: [
{
customType: 'regex',
fileMatch: [
'^rust-toolchain(\\.toml)?$',
],
matchStrings: [
'channel\\s*=\\s*"(?<currentValue>\\d+\\.\\d+\\.\\d+)"',
],
depNameTemplate: 'rust',
packageNameTemplate: 'rust-lang/rust',
datasourceTemplate: 'github-releases',
customType: "regex",
fileMatch: ["^rust-toolchain(\\.toml)?$"],
matchStrings: ['channel\\s*=\\s*"(?<currentValue>\\d+\\.\\d+\\.\\d+)"'],
depNameTemplate: "rust",
packageNameTemplate: "rust-lang/rust",
datasourceTemplate: "github-releases",
},
],
}

0 comments on commit 136ad69

Please sign in to comment.