Skip to content

Commit

Permalink
chore(actions): move dependency management to renovatebot (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: Vasco Ramos <[email protected]>
  • Loading branch information
renovate[bot] and vascoalramos authored Nov 29, 2022
1 parent 62495f9 commit 9827fe4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 16 deletions.
6 changes: 0 additions & 6 deletions .github/dependabot.yaml

This file was deleted.

22 changes: 12 additions & 10 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"branches": ["main"],
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer"
],
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
"branches": ["main"],
"tagFormat": "${version}",
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "chore", "scope": "deps", "release": "patch"}
]
}],
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
11 changes: 11 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"semanticCommitType": "chore",
"semanticCommitScope": "actions"
}
]
}

0 comments on commit 9827fe4

Please sign in to comment.