forked from authelia/authelia
-
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.
ci: configure renovate (authelia#1643)
* Add renovate.json * Update renovate configuration * Fix labelling Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Amir Zarrinkafsh <[email protected]>
- Loading branch information
1 parent
4109497
commit da5892f
Showing
3 changed files
with
64 additions
and
2 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
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
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"extends": [ | ||
"config:base", | ||
":prHourlyLimit4", | ||
":semanticCommitTypeAll(chore)", | ||
":separatePatchReleases" | ||
], | ||
"ignorePresets": [ | ||
":combinePatchMinorReleases", | ||
"helpers:disableTypesNodeMajor", | ||
":prHourlyLimit2", | ||
":semanticPrefixFixDepsChoreOthers" | ||
], | ||
"enabledManagers": [ | ||
"bundler", | ||
"docker-compose", | ||
"dockerfile", | ||
"gomod", | ||
"npm" | ||
], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"packageRules": [ | ||
{ | ||
"datasources": [ | ||
"docker" | ||
], | ||
"addLabels": [ | ||
"docker" | ||
] | ||
}, | ||
{ | ||
"datasources": [ | ||
"go" | ||
], | ||
"addLabels": [ | ||
"go" | ||
] | ||
}, | ||
{ | ||
"datasources": [ | ||
"npm" | ||
], | ||
"addLabels": [ | ||
"javascript" | ||
] | ||
}, | ||
{ | ||
"datasources": [ | ||
"rubygems" | ||
], | ||
"addLabels": [ | ||
"ruby" | ||
] | ||
} | ||
] | ||
} |