mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-24 04:55:12 +00:00
project: add issue & PR templates
This commit is contained in:
parent
f3b0285347
commit
95af8196a2
3 changed files with 114 additions and 0 deletions
45
.gitea/issue_template/bug-report.md
Normal file
45
.gitea/issue_template/bug-report.md
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
name: "Bug Report"
|
||||||
|
about: "Use this for when something's broken."
|
||||||
|
title: "[unknown]: "
|
||||||
|
labels:
|
||||||
|
- bug
|
||||||
|
- unconfirmed
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!--
|
||||||
|
If you know which mod is having a problem, please change
|
||||||
|
`[unknown]` in the title to the path for that mod. For
|
||||||
|
example, if your banners are disappearing, replace the
|
||||||
|
title with `items/mcl_banners: banners disappear`
|
||||||
|
-->
|
||||||
|
|
||||||
|
## What happened?
|
||||||
|
|
||||||
|
<!-- Describe what's wrong. -->
|
||||||
|
|
||||||
|
## What did I expect?
|
||||||
|
|
||||||
|
<!-- Describe what should be happening instead -->
|
||||||
|
|
||||||
|
## How to get it to happen
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Write down exactly what you did to get the bug to happen
|
||||||
|
If you need more steps, just keep adding numbers. If you
|
||||||
|
don't need them all, delete the empty numbers.
|
||||||
|
-->
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
|
||||||
|
## Environment
|
||||||
|
|
||||||
|
**Minetest**
|
||||||
|
```
|
||||||
|
Paste the output of `minetest -v` here.
|
||||||
|
```
|
||||||
|
|
||||||
|
**Mineclonia**: <!-- Paste the version of Mineclonia here, if you know it. -->
|
42
.gitea/issue_template/feature-request.md
Normal file
42
.gitea/issue_template/feature-request.md
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
name: "Feature Request"
|
||||||
|
about: "Mineclonia doesn't do something you need it to"
|
||||||
|
title: "[unknown]: "
|
||||||
|
labels:
|
||||||
|
- "missing feature"
|
||||||
|
- unconfirmed
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!--
|
||||||
|
If you know which mod needs to be changed, please replace
|
||||||
|
`[unknown]` in the title to the path for that mod. For
|
||||||
|
example, if you need the ability to keep banners still,
|
||||||
|
replace the title with
|
||||||
|
`items/mcl_banners: option to keep banners from waving`
|
||||||
|
-->
|
||||||
|
|
||||||
|
## What needs to change?
|
||||||
|
|
||||||
|
<!-- Describe what's wrong. -->
|
||||||
|
|
||||||
|
## Example workflow
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Write down an example of what you'd like to happen.
|
||||||
|
If you need more steps, just keep adding numbers. If you
|
||||||
|
don't need them all, delete the empty numbers.
|
||||||
|
-->
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
|
||||||
|
## Environment
|
||||||
|
|
||||||
|
**Minetest**
|
||||||
|
```
|
||||||
|
Paste the output of `minetest -v` here.
|
||||||
|
```
|
||||||
|
|
||||||
|
**Mineclonia**: <!-- Paste the version of Mineclonia here, if you know it. -->
|
27
.gitea/pull_request_template.md
Normal file
27
.gitea/pull_request_template.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
## Problem
|
||||||
|
TRACKING ISSUE: #<!-- Tracking issue number -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Describe WHAT problem this pull request solves.
|
||||||
|
If the tracking issue includes all the needed
|
||||||
|
information, you can leave this section empty.
|
||||||
|
-->
|
||||||
|
|
||||||
|
## Solution
|
||||||
|
|
||||||
|
<!-- Describe HOW this pull request solves its problem. -->
|
||||||
|
|
||||||
|
## Details
|
||||||
|
|
||||||
|
<!-- Include any additional information here. -->
|
||||||
|
|
||||||
|
## Testing Steps
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Write how we can verify this patch addresses its problem.
|
||||||
|
If you need more steps, just keep adding numbers. If you
|
||||||
|
don't need them all, delete the empty numbers.
|
||||||
|
-->
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
Loading…
Reference in a new issue