generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ian Lewis <[email protected]>
- Loading branch information
Ian Lewis
authored
Feb 27, 2023
1 parent
01ddb97
commit 6a259bd
Showing
2 changed files
with
27 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,6 +1,31 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
"extends": ["config:base", ":gitSignOff"], | ||
"schedule": ["before 3am on the first day of the month"], | ||
"extends": ["config:base"], | ||
"packageRules": [ | ||
{ | ||
"matchManagers": ["github-actions"], | ||
"excludePackageNames": ["slsa-framework/slsa-github-generator"], | ||
"groupName": "github-actions", | ||
"pinDigests": true | ||
}, | ||
{ | ||
"matchManagers": ["github-actions"], | ||
"matchPackageNames": ["slsa-framework/slsa-github-generator"], | ||
"groupName": "github-actions", | ||
"pinDigests": false | ||
}, | ||
{ | ||
"matchManagers": ["npm"], | ||
"matchDepTypes": ["dependencies"], | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"groupName": "npm" | ||
}, | ||
{ | ||
"matchManagers": ["npm"], | ||
"matchDepTypes": ["devDependencies"], | ||
"groupName": "npm dev" | ||
} | ||
] | ||
} |