1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00

feat(repo): add .github/CODEOWNERS file and renovate.json configuration

This commit is contained in:
2024-04-25 22:28:04 +07:00
parent 531e1721bb
commit b2923964e5
2 changed files with 31 additions and 0 deletions

30
renovate.json Normal file
View File

@@ -0,0 +1,30 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"group:allNonMajor",
":semanticCommitTypeAll(chore)"
],
"assigneesFromCodeOwners": true,
"rangeStrategy": "bump",
"npm": {
"commitMessageTopic": "{{prettyDepType}} {{depName}}"
},
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true,
"automergeSchedule": [
"after 1am and before 2am"
],
"schedule": [
"after 2am and before 3am"
]
}
]
}