chore: update mapping and auto labler

This commit is contained in:
C4illin 2025-10-07 19:53:50 +00:00
parent 61dd055d7d
commit 2bdef35be0
2 changed files with 34 additions and 2 deletions

14
.github/release.yml vendored
View file

@ -2,7 +2,19 @@ changelog:
exclude: exclude:
authors: authors:
- renovate[bot] - renovate[bot]
categories: categories:
- title: Features
labels:
- feature
- title: Bug Fixes
labels:
- fix
- title: Miscellaneous Chores
labels:
- chore
- ci
- docs
- test
- title: Other Changes - title: Other Changes
labels: labels:
- "*" - "*"

View file

@ -0,0 +1,20 @@
on:
pull_request_target:
types: [ opened, edited ]
name: conventional-release-labels
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: bcoe/conventional-release-labels@v1
with:
type_labels: |
{
"feat": "Feature",
"fix": "Fix",
"breaking": "Breaking",
"chore": "Chore",
"docs": "Docs",
"test": "Test",
"ci": "CI",
}