|
| 1 | +# ------------------------------------- PULL REQUEST LABELS ------------------------------------- # |
| 2 | +autolabeler: |
| 3 | + # Conventional Commit Types (https://github.com/commitizen/conventional-commit-types) |
| 4 | + - label: build |
| 5 | + title: |
| 6 | + - '/^build(\(.*\))?(\!)?\:/' |
| 7 | + - label: chore |
| 8 | + title: |
| 9 | + - '/^chore(\(.*\))?(\!)?\:/' |
| 10 | + - label: ci |
| 11 | + title: |
| 12 | + - '/^ci(\(.*\))?(\!)?\:/' |
| 13 | + - label: documentation |
| 14 | + title: |
| 15 | + - '/^docs(\(.*\))?(\!)?\:/' |
| 16 | + - label: enhancement |
| 17 | + title: |
| 18 | + - '/^feat(\(.*\))?(\!)?\:/' |
| 19 | + - label: fix |
| 20 | + title: |
| 21 | + - '/^fix(\(.*\))?(\!)?\:/' |
| 22 | + - label: performance |
| 23 | + title: |
| 24 | + - '/^perf(\(.*\))?(\!)?\:/' |
| 25 | + - label: refactor |
| 26 | + title: |
| 27 | + - '/^refactor(\(.*\))?(\!)?\:/' |
| 28 | + - label: revert |
| 29 | + title: |
| 30 | + - '/^revert(\(.*\))?(\!)?\:/' |
| 31 | + - label: style |
| 32 | + title: |
| 33 | + - '/^style(\(.*\))?(\!)?\:/' |
| 34 | + - label: test |
| 35 | + title: |
| 36 | + - '/^test(\(.*\))?(\!)?\:/' |
| 37 | + # Custom Types |
| 38 | + - label: breaking |
| 39 | + title: |
| 40 | + - '/^[a-z]+(\(.*\))?\!\:/' |
| 41 | +# ------------------------------------- AUTOMATIC VERSIONING ------------------------------------ # |
| 42 | +version-resolver: |
| 43 | + major: |
| 44 | + labels: |
| 45 | + - breaking |
| 46 | + minor: |
| 47 | + labels: |
| 48 | + - enhancement |
| 49 | + default: patch |
| 50 | +# ------------------------------------ RELEASE CONFIGURATION ------------------------------------ # |
| 51 | +name-template: "v$RESOLVED_VERSION" |
| 52 | +tag-template: "v$RESOLVED_VERSION" |
| 53 | +category-template: "### $TITLE" |
| 54 | +change-template: "- $TITLE by @$AUTHOR in [#$NUMBER]($URL)" |
| 55 | +replacers: |
| 56 | + # remove conventional commit tag & scope from change list |
| 57 | + - search: '/- [a-z]+(\(.*\))?(\!)?\: /g' |
| 58 | + replace: "- " |
| 59 | +template: | |
| 60 | + ## What's Changed |
| 61 | +
|
| 62 | + $CHANGES |
| 63 | +
|
| 64 | +categories: |
| 65 | + - title: ⚠️ Breaking Changes |
| 66 | + labels: |
| 67 | + - breaking |
| 68 | + - title: ✨ New Features |
| 69 | + labels: |
| 70 | + - enhancement |
| 71 | + - title: 🐞 Bug Fixes |
| 72 | + labels: |
| 73 | + - fix |
| 74 | + - title: 🏎️ Performance Improvements |
| 75 | + labels: |
| 76 | + - performance |
| 77 | + - title: 📚 Documentation |
| 78 | + labels: |
| 79 | + - documentation |
| 80 | + - title: 🏗️ Testing |
| 81 | + labels: |
| 82 | + - test |
| 83 | + - title: ⚙️ Automation |
| 84 | + labels: |
| 85 | + - ci |
| 86 | + - title: 🛠 Builds |
| 87 | + labels: |
| 88 | + - build |
| 89 | + - title: 💎 Code Style |
| 90 | + labels: |
| 91 | + - style |
| 92 | + - title: 📦 Refactorings |
| 93 | + labels: |
| 94 | + - refactor |
| 95 | + - title: ♻️ Chores |
| 96 | + labels: |
| 97 | + - chore |
| 98 | + - title: 🗑 Reverts |
| 99 | + labels: |
| 100 | + - revert |
0 commit comments