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
When using the GitHub Action, specify custom prefixes as inputs:
136
+
137
+
```yaml
138
+
- name: Get next version
139
+
id: get_next_version
140
+
uses: thenativeweb/get-next-version@main
141
+
with:
142
+
fix_prefixes: 'fix,deps,perf'
143
+
feature_prefixes: 'feat,enhance'
144
+
chore_prefixes: 'chore,docs,style'
145
+
```
146
+
147
+
When you specify custom prefixes, they completely replace the defaults for that category. If you want to keep the defaults and add new ones, include them explicitly in your custom list.
148
+
149
+
Note that `!` indicates breaking changes, and will always result in a new major version, independent of the type of change.
0 commit comments