Skip to content

Commit

Permalink
chore(renovate): fix config (#1187)
Browse files Browse the repository at this point in the history
  • Loading branch information
vascoalramos committed Nov 29, 2022
1 parent c3eaa8d commit a0dddb9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator"
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "chore", "scope": "deps", "release": "patch"}
]
}],
"@semantic-release/release-notes-generator"
]
}
13 changes: 9 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"baseBranches": ["develop"]
"extends": ["config:base"],
"baseBranches": ["develop"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"semanticCommitType": "chore",
"semanticCommitScope": "actions"
}
]
}

0 comments on commit a0dddb9

Please sign in to comment.