changelog icon indicating copy to clipboard operation
changelog copied to clipboard

How can I ignore an specific scope from changelog docs?

Open roggervalf opened this issue 2 years ago • 0 comments

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?

roggervalf avatar Jun 12 '23 23:06 roggervalf