Skip to content

Commit 9827fe4

Browse files
chore(actions): move dependency management to renovatebot (#10)
Co-authored-by: Vasco Ramos <[email protected]>
1 parent 62495f9 commit 9827fe4

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

.github/dependabot.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.releaserc.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
2-
"branches": ["main"],
3-
"tagFormat": "${version}",
4-
"plugins": [
5-
[
6-
"@semantic-release/commit-analyzer"
7-
],
8-
"@semantic-release/commit-analyzer",
9-
"@semantic-release/release-notes-generator",
10-
"@semantic-release/github"
11-
]
2+
"branches": ["main"],
3+
"tagFormat": "${version}",
4+
"plugins": [
5+
["@semantic-release/commit-analyzer", {
6+
"preset": "angular",
7+
"releaseRules": [
8+
{"type": "chore", "scope": "deps", "release": "patch"}
9+
]
10+
}],
11+
"@semantic-release/release-notes-generator",
12+
"@semantic-release/github"
13+
]
1214
}

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:base"],
4+
"packageRules": [
5+
{
6+
"matchManagers": ["github-actions"],
7+
"semanticCommitType": "chore",
8+
"semanticCommitScope": "actions"
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)