I have this kind of configuration:
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"scope": "test*",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
and changelog file is still adding texts with test scope, I would like to avoid also those scopes as well, is there a way to do it?