Add pull request templates
This commit is contained in:
parent
62762ed4e2
commit
f478b381f2
7 changed files with 91 additions and 0 deletions
13
.gitea/pull_request_template/bugfix.md
Normal file
13
.gitea/pull_request_template/bugfix.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '🪱 Bugfix'
|
||||
about: 'Submit a pull request which fixes a bug in the framework code.'
|
||||
title: 'bugfix: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/Bugfix'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
13
.gitea/pull_request_template/documentation.md
Normal file
13
.gitea/pull_request_template/documentation.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '📚 Documentation'
|
||||
about: 'Submit a pull request which updates the documentation. Do not create your pull request with this template if your PR is implementing a new feature or updating dependencies.'
|
||||
title: 'docs: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/Documentation'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
13
.gitea/pull_request_template/miscellaneous.md
Normal file
13
.gitea/pull_request_template/miscellaneous.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '🎯 Miscellaneous'
|
||||
about: 'Submit a pull request which does not update the documentation, adds a new feature, introduces quality of life changes, or fixes a bug.'
|
||||
title: 'misc: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/Miscellaneous'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
13
.gitea/pull_request_template/mixed.md
Normal file
13
.gitea/pull_request_template/mixed.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '🧋 Mixed'
|
||||
about: 'Submit a pull request which updates multiple regions of the CORE source code and documentation.'
|
||||
title: 'mixed: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/Mixed'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
13
.gitea/pull_request_template/newfeature.md
Normal file
13
.gitea/pull_request_template/newfeature.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '➕ New Feature'
|
||||
about: 'Submit a pull request which introduces a new feature into the framework.'
|
||||
title: 'feat: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/NewFeature'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
13
.gitea/pull_request_template/qualityoflife.md
Normal file
13
.gitea/pull_request_template/qualityoflife.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '💖 Quality of Life'
|
||||
about: 'Submit a pull request which improves the developer experience.'
|
||||
title: 'qol: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/QualityOfLife'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
13
.gitea/pull_request_template/update.md
Normal file
13
.gitea/pull_request_template/update.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
name: '📩 Update'
|
||||
about: 'Submit a pull request which updates one of CORE's dependencies.'
|
||||
title: 'update: '
|
||||
ref: 'develop'
|
||||
labels:
|
||||
- 'PRStatus/Open'
|
||||
- 'PR/Update'
|
||||
---
|
||||
<!--
|
||||
Please name some context on what you've fixed. Also name the issue number (if there is one)
|
||||
and make a list of changes you've made if your pull request includes many changes.
|
||||
-->
|
Loading…
Reference in a new issue