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

Merge pull request #7 from robonen/renoveate-bot

feat(repo): add .github/CODEOWNERS file and renovate.json configuration
This commit is contained in:
2024-04-26 01:24:39 +07:00
committed by GitHub
2 changed files with 31 additions and 0 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1 @@
* @robonen

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"
]
}
]
}