Skip to content

Commit 1939136

Browse files
chore: Configure Renovate (#5)
* Add renovate.json * chore(renovate): configure baseBranch * chore(renovate): ignore UI for now * chore(renovate): assign PRs to CODEOWNERS * chore(renovate): set commits as `deps:` * chore(renovate): set semanticCommitScope as `depName` * chore(renovate): set semanticCommitType for github-actions updates * chore(renovate): set commitMessageTopic to action for github-actions updates * chore(renovate): configure commit message for gradle plugin updates * chore(renovate): configure commit message for gradle dependency updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: guicamest <[email protected]>
1 parent b10bf3b commit 1939136

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @guicamest

renovate.json

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:base"
5+
],
6+
"baseBranches": [
7+
"v3"
8+
],
9+
"ignorePaths": [
10+
"**/FileDuplicateFinderUI/**"
11+
],
12+
"assigneesFromCodeOwners": true,
13+
"semanticCommitType": "deps",
14+
"semanticCommitScope": "{{depName}}",
15+
"packageRules": [
16+
{
17+
"matchManagers": [
18+
"github-actions"
19+
],
20+
"semanticCommitType": "ci",
21+
"commitMessageTopic": "action"
22+
},
23+
{
24+
"matchManagers": [
25+
"gradle"
26+
],
27+
"matchDepTypes": [
28+
"plugin"
29+
],
30+
"semanticCommitType": "build",
31+
"commitMessageTopic": "plugin"
32+
},
33+
{
34+
"matchManagers": [
35+
"gradle"
36+
],
37+
"matchDepTypes": [
38+
"dependencies"
39+
],
40+
"semanticCommitType": "deps",
41+
"commitMessageTopic": "dependency"
42+
}
43+
]
44+
}

0 commit comments

Comments
 (0)