mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-10 06:14:13 +00:00
Merge pull request #345 from gardar/chore-pr-title
skip_changelog: allow chore label in PR title
This commit is contained in:
commit
0d6c90d4ed
1 changed files with 6 additions and 2 deletions
8
.github/workflows/conventional-label.yml
vendored
8
.github/workflows/conventional-label.yml
vendored
|
@ -16,7 +16,10 @@ jobs:
|
|||
- name: "Confirm correct pull request title"
|
||||
uses: mmubeen/action-pr-title@master # until PR gets merged https://github.com/deepakputhraya/action-pr-title/pull/29
|
||||
with:
|
||||
allowed_prefixes: 'feat,feature,fix,major,breaking,minor,enhancement,deprecated,removed,security,bug,bugfix,docs,packaging,test,refactor,refactoring,skip-release,skip_changelog,patch'
|
||||
allowed_prefixes: >-
|
||||
breaking,chore,feat,feature,fix,major,minor,enhancement,
|
||||
deprecated,removed,security,bug,bugfix,docs,packaging,
|
||||
test,refactor,refactoring,skip-release,skip_changelog,patch
|
||||
|
||||
- name: "Apply label"
|
||||
if: github.event.pull_request.labels.length == 0
|
||||
|
@ -43,7 +46,8 @@ jobs:
|
|||
"refactoring": "trivial",
|
||||
"skip-release": "skip_changelog",
|
||||
"skip_changelog": "skip_changelog",
|
||||
"patch": "trivial"
|
||||
"patch": "trivial",
|
||||
"chore": "trivial"
|
||||
}
|
||||
|
||||
role-label:
|
||||
|
|
Loading…
Reference in a new issue