ci: change autolabeler to a custom built (#603)
This commit is contained in:
parent
84e954948b
commit
85355c64b3
|
|
@ -1,23 +1,26 @@
|
||||||
|
name: autolabel
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types: [opened, edited]
|
types: [opened, edited]
|
||||||
name: conventional-release-labels
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
label:
|
label:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: bcoe/conventional-release-labels@v1
|
- uses: c4illin/autolabel@main
|
||||||
with:
|
with:
|
||||||
type_labels: |
|
type_labels: |
|
||||||
{
|
feat: Feature
|
||||||
"feat": "Feature",
|
fix: Fix
|
||||||
"fix": "Fix",
|
docs: Docs
|
||||||
"breaking": "Breaking",
|
style: Style
|
||||||
"chore": "Chore",
|
refactor: Refactor
|
||||||
"docs": "Docs",
|
perf: Performance
|
||||||
"test": "Test",
|
test: Test
|
||||||
"ci": "CI"
|
build: Build
|
||||||
}
|
ci: CI
|
||||||
|
revert: Revert
|
||||||
|
breaking: Breaking
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue