mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-22 03:43:09 +00:00
feat: auto label PR's with conventional commits
Signed-off-by: gardar <gardar@users.noreply.github.com>
This commit is contained in:
parent
24aa8019c3
commit
ecd7cb265d
2 changed files with 45 additions and 9 deletions
38
.github/workflows/conventional-label.yml
vendored
Normal file
38
.github/workflows/conventional-label.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, edited, synchronize, reopened]
|
||||
name: Auto label pull request
|
||||
jobs:
|
||||
label:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- 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'
|
||||
|
||||
- name: "Apply label"
|
||||
if: github.event.pull_request.labels.length == 0
|
||||
uses: bcoe/conventional-release-labels@v1
|
||||
with:
|
||||
type_labels: |
|
||||
{
|
||||
"feat": "enhancement",
|
||||
"fix": "bugfix",
|
||||
"major": "major",
|
||||
"breaking": "breaking",
|
||||
"minor": "minor",
|
||||
"enhancement": "enhancement",
|
||||
"deprecated": "deprecated",
|
||||
"removed": "removed",
|
||||
"security": "security",
|
||||
"bug": "bug",
|
||||
"bugfix": "bugfix",
|
||||
"docs": "trivial",
|
||||
"packaging": "trivial",
|
||||
"test": "trivial",
|
||||
"refactor": "trivial",
|
||||
"refactoring": "trivial",
|
||||
"skip-release": "skip-release"
|
||||
}
|
|
@ -25,21 +25,19 @@ To have your code merged, see the expectations listed below.
|
|||
|
||||
You can find a well-written guide [here](https://help.github.com/articles/fork-a-repo).
|
||||
|
||||
Please follow common commit best-practices. Be explicit, have a short summary, a well-written description and
|
||||
Please follow conventional commits for best-practices. Be explicit, have a short summary, a well-written description and
|
||||
references. This is especially important for the merge-request.
|
||||
|
||||
Some great guidelines can be found [here](https://wiki.openstack.org/wiki/GitCommitMessages) and
|
||||
[here](http://robots.thoughtbot.com/5-useful-tips-for-a-better-commit-message).
|
||||
Some great guidelines can be found [here](https://www.conventionalcommits.org/).
|
||||
|
||||
## Releases
|
||||
|
||||
We try to stick to semantic versioning and our releases are automated. Release is created by assigning a keyword (in a
|
||||
way similar to circle ci keyword [`[ci skip]`](https://docs.travis-ci.com/user/customizing-the-build#Skipping-a-build))
|
||||
to a commit with merge request. Available keywords are (square brackets are important!):
|
||||
We try to stick to semantic versioning and our releases are automated. Release is created by assigning [conventional commits](https://www.conventionalcommits.org/)
|
||||
to PR title. Available keywords are:
|
||||
|
||||
* `[patch]`, `[fix]`, `[bugfix]` - for PATCH version release
|
||||
* `[minor]`, `[feature]`, `[feat]` - for MINOR version release
|
||||
* `[major]`, `[breaking change]` - for MAJOR version release
|
||||
* `[patch]`, `[fix]`, `[bug]`, `[bugfix]`, `[test]`, `[refactor]`, `[packaging]`, `[docs]` - for PATCH version release
|
||||
* `[minor]`, `[enhancement]`, `[feat]`, `[deprecated]`, `[removed]`, `[security]` - for MINOR version release
|
||||
* `[major]`, `[breaking]` - for MAJOR version release
|
||||
|
||||
## Changelog
|
||||
This project uses [antsibull-changelog](https://docs.ansible.com/ansible/latest/dev_guide/developing_collections_changelogs.html#generating-changelogs) to generate changelogs.
|
||||
|
|
Loading…
Reference in a new issue