-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68e7391
commit 7f22290
Showing
1 changed file
with
20 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,43 @@ | ||
{ | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: [ | ||
'local>SpotOnInc/renovate-config', | ||
], | ||
$schema: "https://docs.renovatebot.com/renovate-schema.json", | ||
extends: ["local>SpotOnInc/renovate-config"], | ||
packageRules: [ | ||
{ | ||
matchPackageNames: [ | ||
'renovate', | ||
], | ||
matchPackageNames: ["renovate"], | ||
automerge: true, | ||
separateMinorPatch: false, | ||
automergeType: 'branch', | ||
automergeType: "branch", | ||
minimumReleaseAge: null, | ||
extends: [ | ||
'schedule:earlyMondays', | ||
], | ||
extends: ["schedule:earlyMondays"], | ||
}, | ||
{ | ||
matchPackageNames: [ | ||
'prettier', | ||
], | ||
matchPackageNames: ["prettier"], | ||
automerge: true, | ||
separateMinorPatch: false, | ||
automergeType: 'branch', | ||
extends: [ | ||
'schedule:earlyMondays', | ||
], | ||
automergeType: "branch", | ||
extends: ["schedule:earlyMondays"], | ||
}, | ||
], | ||
customManagers: [ | ||
{ | ||
customType: 'regex', | ||
description: 'Update Renovate', | ||
fileMatch: [ | ||
'^\\.pre-commit-config|\\.yaml$', | ||
], | ||
customType: "regex", | ||
description: "Update Renovate", | ||
fileMatch: ["^\\.pre-commit-config|\\.yaml$"], | ||
matchStrings: [ | ||
'https://github.com/renovatebot/pre-commit-hooks\\s?rev: (?<currentValue>.*?)\\s', | ||
"https://github.com/renovatebot/pre-commit-hooks\\s?rev: (?<currentValue>.*?)\\s", | ||
], | ||
depNameTemplate: 'renovate', | ||
datasourceTemplate: 'npm', | ||
depNameTemplate: "renovate", | ||
datasourceTemplate: "npm", | ||
}, | ||
{ | ||
customType: 'regex', | ||
description: 'Update Prettier in docs', | ||
fileMatch: [ | ||
'^\\.pre-commit-config|\\.yaml$', | ||
'^README\\.md$', | ||
], | ||
customType: "regex", | ||
description: "Update Prettier in docs", | ||
fileMatch: ["^\\.pre-commit-config|\\.yaml$", "^README\\.md$"], | ||
matchStrings: [ | ||
'https://github.com/pre-commit/mirrors-prettier\\s?rev: (?<currentValue>.*?)\\s', | ||
"https://github.com/pre-commit/mirrors-prettier\\s?rev: (?<currentValue>.*?)\\s", | ||
], | ||
depNameTemplate: 'prettier', | ||
datasourceTemplate: 'npm', | ||
depNameTemplate: "prettier", | ||
datasourceTemplate: "npm", | ||
}, | ||
], | ||
} |