Merge pull request #62 from viccuad/main #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
categories: | |
- title: "⚠️ Breaking changes" | |
labels: | |
- "kind/major" | |
- "kind/breaking-change" | |
- title: "🚀 Features" | |
labels: | |
- "kind/enhancement" | |
- "kind/feature" | |
- title: "🐛 Bug Fixes" | |
labels: | |
- "kind/bug" | |
- title: "🧰 Maintenance" | |
labels: | |
- "kind/chore" | |
- "area/dependencies" | |
exclude-labels: | |
- duplicate | |
- invalid | |
- later | |
- wontfix | |
- kind/question | |
- release/skip-changelog | |
change-template: "- $TITLE (#$NUMBER)" | |
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | |
name-template: "v$RESOLVED_VERSION" | |
template: | | |
$CHANGES | |
autolabeler: | |
# Tag any PR with "!" in the subject as major update. In other words, breaking change | |
- label: "kind/breaking-change" | |
title: "/.*!:.*/" | |
- label: "area/dependencies" | |
title: "chore(deps)" | |
- label: "area/dependencies" | |
title: "fix(deps)" | |
- label: "area/dependencies" | |
title: "build(deps)" | |
- label: "kind/feature" | |
title: "feat" | |
- label: "kind/bug" | |
title: "fix" | |
- label: "kind/chore" | |
title: "chore" | |
version-resolver: | |
major: | |
labels: | |
- "kind/major" | |
- "kind/breaking-change" | |
minor: | |
labels: | |
- "kind/minor" | |
- "kind/feature" | |
- "kind/enhancement" | |
patch: | |
labels: | |
- "kind/patch" | |
- "kind/fix" | |
- "kind/bug" | |
- "kind/chore" | |
- "area/dependencies" | |
default: patch |