mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-10 06:14:13 +00:00
fix: support feature
label
Signed-off-by: gardar <gardar@users.noreply.github.com>
This commit is contained in:
parent
cb5c6c435d
commit
620acbb7de
2 changed files with 3 additions and 2 deletions
3
.github/workflows/conventional-label.yml
vendored
3
.github/workflows/conventional-label.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
|||
- name: "Confirm correct pull request title"
|
||||
uses: deepakputhraya/action-pr-title@master
|
||||
with:
|
||||
allowed_prefixes: 'feat,fix,major,breaking,minor,enhancement,deprecated,removed,security,bug,bugfix,docs,packaging,test,refactor,refactoring,skip-release,skip_changelog'
|
||||
allowed_prefixes: 'feat,feature,fix,major,breaking,minor,enhancement,deprecated,removed,security,bug,bugfix,docs,packaging,test,refactor,refactoring,skip-release,skip_changelog'
|
||||
|
||||
- name: "Apply label"
|
||||
if: github.event.pull_request.labels.length == 0
|
||||
|
@ -18,6 +18,7 @@ jobs:
|
|||
with:
|
||||
type_labels: |
|
||||
{
|
||||
"feature": "enhancement",
|
||||
"feat": "enhancement",
|
||||
"fix": "bugfix",
|
||||
"major": "major",
|
||||
|
|
|
@ -36,7 +36,7 @@ We try to stick to semantic versioning and our releases are automated. Release i
|
|||
to PR title. Available keywords are:
|
||||
|
||||
* `[patch]`, `[fix]`, `[bug]`, `[bugfix]`, `[test]`, `[refactor]`, `[packaging]`, `[docs]` - for PATCH version release
|
||||
* `[minor]`, `[enhancement]`, `[feat]`, `[deprecated]`, `[removed]`, `[security]` - for MINOR version release
|
||||
* `[minor]`, `[enhancement]`, `[feature]`, `[feat]`, `[deprecated]`, `[removed]`, `[security]` - for MINOR version release
|
||||
* `[major]`, `[breaking]` - for MAJOR version release
|
||||
|
||||
## Changelog
|
||||
|
|
Loading…
Reference in a new issue