diff options
| author | shedaniel <daniel@shedaniel.me> | 2022-02-02 23:08:34 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2022-02-02 23:08:34 +0800 |
| commit | 5eaa9d004d1b2cc7010f99e5baf0bcbff5d0b52f (patch) | |
| tree | fcac7c391a29726734092401978ef6264689ed64 /.github | |
| parent | a344ca45f7c44de9773527a5d75f6923cb9f47ff (diff) | |
| download | RoughlyEnoughItems-5eaa9d004d1b2cc7010f99e5baf0bcbff5d0b52f.tar.gz RoughlyEnoughItems-5eaa9d004d1b2cc7010f99e5baf0bcbff5d0b52f.tar.bz2 RoughlyEnoughItems-5eaa9d004d1b2cc7010f99e5baf0bcbff5d0b52f.zip | |
Improve issue templates
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.md | 29 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.yaml | 56 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 1 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature-request.md | 14 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature-request.yaml | 27 |
5 files changed, 84 insertions, 43 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index d35332761..000000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -title: "[Bug]" -labels: bug -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**Steps to Reproduce** -Steps to reproduce the behavior: -- First Step -- Second Step - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Environment (please complete the following information with the version):** - - Minecraft: [e.g. 1.14] - - Mod Loader: [e.g. forge, fabric] - -**Logs** -Pastebin the log [e.g. `logs/latest.log`] and link it below: - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml new file mode 100644 index 000000000..9c2afe968 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -0,0 +1,56 @@ +name: Bug Report +description: File a bug report +title: "[Bug] CHANGE ME" +labels: [ "bug" ] +body: + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + validations: + required: true + - type: dropdown + id: loaders + attributes: + label: What mod loaders are you seeing the problem on? + description: Please select all that apply. + multiple: true + options: + - Fabric + - Forge + - Rift + validations: + required: true + - type: checkboxes + id: types + attributes: + label: What do you think this bug is of? + description: Please select all that apply. + options: + - label: Visual + - label: Recipe Lookup + - label: Cheat Mode + - label: Plugin Integration / JEI Plugin Compatibility + - label: Others + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output, this will be used to help diagnose the issue. Please do not use any paste services, as they may expire and be deleted. + placeholder: You can look into `.minecraft/logs` and find the `latest.log` and `rei.log`, you can paste them here. + render: shell + - type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + + Tip: You can attach images or additional log files by clicking this area to highlight it and then dragging files in. + - type: markdown + attributes: + value: | + Before submitting a bug report, please make sure that this issue has not already been reported. You can use the search feature to find existing issues. + + Thanks for taking the time to fill out this bug report!
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..ec4bb386b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md deleted file mode 100644 index a30a79533..000000000 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea for this project -title: "[Feature]" -labels: enhancement -assignees: '' - ---- - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml new file mode 100644 index 000000000..aeabb8aae --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -0,0 +1,27 @@ +name: Feature Request +description: Suggest a change to the project +title: "[Feature] CHANGE ME" +labels: [ "enhancement" ] +body: + - type: textarea + attributes: + label: What is your feature request? + description: | + Please describe the feature you would like to see. + + Tip: You can attach images or additional log files by clicking this area to highlight it and then dragging files in. + - type: checkboxes + id: types + attributes: + label: What do you think this change is of? + description: Please select all that apply. + options: + - label: Visual + - label: Recipe Lookup + - label: Cheat Mode + - label: Plugin Integration / JEI Plugin Compatibility + - label: Others + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request!
\ No newline at end of file |
