chore: update mapping and auto labler
This commit is contained in:
parent
61dd055d7d
commit
2bdef35be0
2 changed files with 34 additions and 2 deletions
16
.github/release.yml
vendored
16
.github/release.yml
vendored
|
|
@ -2,7 +2,19 @@ changelog:
|
|||
exclude:
|
||||
authors:
|
||||
- renovate[bot]
|
||||
categories:
|
||||
categories:
|
||||
- title: Features
|
||||
labels:
|
||||
- feature
|
||||
- title: Bug Fixes
|
||||
labels:
|
||||
- fix
|
||||
- title: Miscellaneous Chores
|
||||
labels:
|
||||
- chore
|
||||
- ci
|
||||
- docs
|
||||
- test
|
||||
- title: Other Changes
|
||||
labels:
|
||||
- "*"
|
||||
- "*"
|
||||
|
|
|
|||
20
.github/workflows/conventional-label.yml
vendored
Normal file
20
.github/workflows/conventional-label.yml
vendored
Normal 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",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue