mirror of https://github.com/helm/helm
parent
276121c869
commit
c7286c2573
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"LABEL": {
|
||||||
|
"name": "title-needs-formatting",
|
||||||
|
"color": "EEEEEE"
|
||||||
|
},
|
||||||
|
"CHECKS": {
|
||||||
|
"prefixes": ["Fix: ", "Feat: ", "Docs: ", "Test: ", "Chore: ", "CI: ", "Perf: ", "Refactor: ", "Revert: ", "Style: ", "Test: ",
|
||||||
|
"Fix(", "Feat(", "Docs(", "Test(", "Chore(", "CI(", "Perf(", "Refactor(", "Revert(", "Style(", "Test(", "[Backport"]
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
name: PR Title Checker
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- edited
|
||||||
|
- synchronize
|
||||||
|
- labeled
|
||||||
|
- unlabeled
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- uses: thehanimo/pr-title-checker@v1.4.0
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
pass_on_octokit_error: true
|
||||||
|
configuration_path: ".github/pr-title-checker-config.json"
|
Loading…
Reference in new issue