You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Commits with `type` 'docs' and `scope` 'README' will be associated with a `patch` release.
101
102
- Commits with `type` 'refactor' and `scope` starting with 'core-' (i.e. 'core-ui', 'core-rules', ...) will be associated with a `minor` release.
102
103
- Other commits with `type` 'refactor' (without `scope` or with a `scope` not matching the regexp `/core-.*/`) will be associated with a `patch` release.
104
+
- Commits with scope `no-release` will not be associated with a release type.
103
105
104
106
##### Default rules matching
105
107
@@ -110,6 +112,7 @@ With the previous example:
110
112
- Commits with `type` 'feat' will be associated with a `minor` release.
111
113
- Commits with `type` 'fix' will be associated with a `patch` release.
112
114
- Commits with `type` 'perf' will be associated with a `patch` release.
115
+
- Commits with scope `no-release` will not be associated with a release type even if they have a breaking change or the `type` 'feat', 'fix' or 'perf'.
0 commit comments