mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
🐛 fix(github): Add build type to auto-labeller for dependabot (#36)
## Description **What(what issue does this code solve/what feature does it add):** Dependabot does not have a `build` semver type and it keeps triggering the autolabeller. So, i added that in there, plus slimmed down the pull_request_template as it required too much info, which made it too cumbersome filling it
This commit is contained in:
11
.github/pull_request_template.md
vendored
11
.github/pull_request_template.md
vendored
@@ -1,12 +1,3 @@
|
|||||||
## Description
|
## Description
|
||||||
|
|
||||||
**What(what issue does this code solve/what feature does it add):**
|
**What issue are you solving (or what feature are you adding) and how are you doing it?**
|
||||||
|
|
||||||
**How(how does it solve it):**
|
|
||||||
|
|
||||||
## Required Checklist:
|
|
||||||
|
|
||||||
- [ ] I have added any necessary documentation and comments in my code (where appropriate)
|
|
||||||
- [ ] I have added tests to make sure my code runs in all contexts
|
|
||||||
|
|
||||||
## Further comments
|
|
||||||
19
.github/workflows/autolabeller.yml
vendored
19
.github/workflows/autolabeller.yml
vendored
@@ -26,22 +26,21 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GIT_MASTER_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GIT_MASTER_TOKEN }}
|
||||||
with:
|
with:
|
||||||
#TODO: fix all emojis
|
|
||||||
types: |-
|
types: |-
|
||||||
|
build
|
||||||
|
chore
|
||||||
|
ci
|
||||||
|
deprecate
|
||||||
|
docs
|
||||||
feat
|
feat
|
||||||
fix
|
fix
|
||||||
chore
|
perf
|
||||||
docs
|
refactor
|
||||||
test
|
|
||||||
security
|
|
||||||
remove
|
remove
|
||||||
revert
|
revert
|
||||||
perf
|
security
|
||||||
style
|
style
|
||||||
deprecate
|
test
|
||||||
refactor
|
|
||||||
ci
|
|
||||||
build
|
|
||||||
requireScope: false
|
requireScope: false
|
||||||
# Ensures the subject start with an uppercase character.
|
# Ensures the subject start with an uppercase character.
|
||||||
subjectPattern: ^([A-Z]).+$
|
subjectPattern: ^([A-Z]).+$
|
||||||
|
|||||||
Reference in New Issue
Block a user