-
Notifications
You must be signed in to change notification settings - Fork 0
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
a4ab90a
commit d2b3763
Showing
1 changed file
with
45 additions
and
45 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,67 +1,67 @@ | ||
{ | ||
"extends": [ | ||
"config:best-practices", | ||
":rebaseStalePrs", | ||
"regexManagers:dockerfileVersions" | ||
extends: [ | ||
'config:best-practices', | ||
':rebaseStalePrs', | ||
'customManagers:dockerfileVersions', | ||
], | ||
"packageRules": [ | ||
packageRules: [ | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
matchUpdateTypes: [ | ||
'minor', | ||
'patch', | ||
'digest', | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch", | ||
"digest" | ||
groupName: 'all non-major dependencies', | ||
schedule: [ | ||
'after 10pm on Friday', | ||
], | ||
matchPackageNames: [ | ||
'*', | ||
], | ||
"groupName": "all non-major dependencies", | ||
"schedule": [ | ||
"after 10pm on Friday" | ||
] | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"gomod" | ||
matchManagers: [ | ||
'gomod', | ||
], | ||
"postUpdateOptions": [ | ||
"gomodTidy" | ||
postUpdateOptions: [ | ||
'gomodTidy', | ||
], | ||
"groupName": "gomod updates" | ||
groupName: 'gomod updates', | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"dockerfile" | ||
matchManagers: [ | ||
'dockerfile', | ||
], | ||
"groupName": "Dockerfile updates" | ||
groupName: 'Dockerfile updates', | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"github-actions" | ||
matchManagers: [ | ||
'github-actions', | ||
], | ||
groupName: 'GitHub Actions updates', | ||
schedule: [ | ||
'after 10pm on Friday', | ||
], | ||
"groupName": "GitHub Actions updates", | ||
"schedule": [ | ||
"after 10pm on Friday" | ||
] | ||
}, | ||
{ | ||
"matchPackagePatterns": [ | ||
"*" | ||
matchUpdateTypes: [ | ||
'major', | ||
], | ||
"matchUpdateTypes": [ | ||
"major" | ||
groupName: 'all major updates', | ||
schedule: [ | ||
'after 10pm on the first day of the month', | ||
], | ||
"groupName": "all major updates", | ||
"schedule": [ | ||
"after 10pm on the first day of the month" | ||
] | ||
} | ||
matchPackageNames: [ | ||
'*', | ||
], | ||
}, | ||
], | ||
"labels": [ | ||
"dependencies" | ||
labels: [ | ||
'dependencies', | ||
], | ||
"osvVulnerabilityAlerts": true, | ||
"dependencyDashboardOSVVulnerabilitySummary": "unresolved", | ||
"vulnerabilityAlerts": { | ||
"enabled": true | ||
} | ||
osvVulnerabilityAlerts: true, | ||
dependencyDashboardOSVVulnerabilitySummary: 'unresolved', | ||
vulnerabilityAlerts: { | ||
enabled: true, | ||
}, | ||
} |