Skip to content

Commit 9299080

Browse files
chore(actions): move dependency management to renovatebot (#204)
Co-authored-by: Vasco Ramos <vasco.ramos@ydata.ai>
1 parent b7887c8 commit 9299080

3 files changed

Lines changed: 17 additions & 7 deletions

File tree

.github/dependabot.yaml

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

.releaserc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"tagFormat": "${version}",
33
"plugins": [
4-
"@semantic-release/commit-analyzer",
4+
["@semantic-release/commit-analyzer", {
5+
"preset": "angular",
6+
"releaseRules": [
7+
{"type": "chore", "scope": "deps", "release": "patch"}
8+
]
9+
}],
510
"@semantic-release/release-notes-generator"
611
]
712
}

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)