mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-23 07:09:41 +02:00
dev: add internal dev section to release notes (#4390)
This commit is contained in:
parent
8180aefc0b
commit
60ea83d737
3 changed files with 14 additions and 4 deletions
8
.github/pull_request_template.md
vendored
8
.github/pull_request_template.md
vendored
|
@ -6,6 +6,7 @@
|
||||||
- `fix: `
|
- `fix: `
|
||||||
- `docs: `
|
- `docs: `
|
||||||
- `chore: `
|
- `chore: `
|
||||||
|
- `dev:`
|
||||||
|
|
||||||
If a section of the PR template does not apply to this PR, then delete that section.
|
If a section of the PR template does not apply to this PR, then delete that section.
|
||||||
|
|
||||||
|
@ -27,10 +28,11 @@ _(REQUIRED)_
|
||||||
Delete any of the following that do not apply:
|
Delete any of the following that do not apply:
|
||||||
-->
|
-->
|
||||||
|
|
||||||
- bug
|
|
||||||
- cleanup
|
|
||||||
- documentation
|
|
||||||
- feature
|
- feature
|
||||||
|
- bug
|
||||||
|
- documentation
|
||||||
|
- cleanup
|
||||||
|
- dev (Internal development)
|
||||||
|
|
||||||
## What this PR does / why we need it:
|
## What this PR does / why we need it:
|
||||||
|
|
||||||
|
|
7
.github/release-drafter.yml
vendored
7
.github/release-drafter.yml
vendored
|
@ -25,6 +25,9 @@ categories:
|
||||||
- title: "📚 Documentation"
|
- title: "📚 Documentation"
|
||||||
labels:
|
labels:
|
||||||
- "documentation"
|
- "documentation"
|
||||||
|
- title: "🔨 Internal development"
|
||||||
|
labels:
|
||||||
|
- "dev"
|
||||||
- title: "⬆️ Dependency updates"
|
- title: "⬆️ Dependency updates"
|
||||||
collapse-after: 3
|
collapse-after: 3
|
||||||
labels:
|
labels:
|
||||||
|
@ -47,6 +50,7 @@ version-resolver:
|
||||||
- "dependencies"
|
- "dependencies"
|
||||||
- "documentation"
|
- "documentation"
|
||||||
- "l10n"
|
- "l10n"
|
||||||
|
- "dev"
|
||||||
default: patch
|
default: patch
|
||||||
|
|
||||||
template: |
|
template: |
|
||||||
|
@ -69,3 +73,6 @@ autolabeler:
|
||||||
- label: 'chore'
|
- label: 'chore'
|
||||||
title:
|
title:
|
||||||
- '/chore:/i'
|
- '/chore:/i'
|
||||||
|
- label: 'dev'
|
||||||
|
title:
|
||||||
|
- '/dev:/i'
|
||||||
|
|
3
.github/workflows/pull-request-lint.yml
vendored
3
.github/workflows/pull-request-lint.yml
vendored
|
@ -20,10 +20,11 @@ jobs:
|
||||||
# Configure which types are allowed (newline-delimited).
|
# Configure which types are allowed (newline-delimited).
|
||||||
# Default: https://github.com/commitizen/conventional-commit-types
|
# Default: https://github.com/commitizen/conventional-commit-types
|
||||||
types: |
|
types: |
|
||||||
fix
|
|
||||||
feat
|
feat
|
||||||
|
fix
|
||||||
docs
|
docs
|
||||||
chore
|
chore
|
||||||
|
dev
|
||||||
# Configure which scopes are allowed (newline-delimited).
|
# Configure which scopes are allowed (newline-delimited).
|
||||||
# These are regex patterns auto-wrapped in `^ $`.
|
# These are regex patterns auto-wrapped in `^ $`.
|
||||||
scopes: |
|
scopes: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue