mirror of
https://github.com/C4illin/ConvertX.git
synced 2025-10-22 20:42:21 +00:00
21 lines
475 B
YAML
21 lines
475 B
YAML
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"
|
|
}
|