Skip to content

Commit

Permalink
Merge pull request #6 from deedee-ops/renovate/migrate-config
Browse files Browse the repository at this point in the history
chore(config): migrate renovate config
  • Loading branch information
ajgon authored Oct 27, 2024
2 parents 2863a0a + 0aa1a87 commit b36b903
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"config:recommended",
":dependencyDashboard",
":disableRateLimiting",
"docker:enableMajor",
Expand All @@ -12,31 +12,36 @@
"github>deedee-ops/nixlab//.github/renovate/autoMerge.json5",
"github>deedee-ops/nixlab//.github/renovate/commitMessage.json5",
"github>deedee-ops/nixlab//.github/renovate/labels.json5",
"github>deedee-ops/nixlab//.github/renovate/semanticCommits.json5"
"github>deedee-ops/nixlab//.github/renovate/semanticCommits.json5",
],
"gitAuthor": "robodexo2000 <150604236+robodexo2000[bot]@users.noreply.github.com>",
"dependencyDashboardTitle": "Renovate Dashboard 🤖",
"suppressNotifications": ["prEditedNotification", "prIgnoreNotification"],
"suppressNotifications": [
"prEditedNotification",
"prIgnoreNotification",
],
"commitBodyTable": true,
"rebaseWhen": "auto",

"nix": {
"enabled": "true",
"enabled": true,
},

"lockFileMaintenance": {
"enabled": "true",
"automerge": "true",
"schedule": [ "before 4am on Sunday" ],
"enabled": true,
"automerge": true,
"schedule": [
"before 4am on Sunday",
],
},

"regexManagers": [
"customManagers": [
{
fileMatch: ["^modules/.*\\.nix$"],
matchStrings: [
'image *= *"(?<depName>.*?):(?<currentValue>.*?)(@(?<currentDigest>sha256:[a-f0-9]+))?"',
"customType": "regex",
"fileMatch": [
"^modules/.*\\.nix$",
],
"matchStrings": [
"image *= *\"(?<depName>.*?):(?<currentValue>.*?)(@(?<currentDigest>sha256:[a-f0-9]+))?\"",
],
datasourceTemplate: "docker",
}
]
"datasourceTemplate": "docker",
},
],
}

0 comments on commit b36b903

Please sign in to comment.