From 6d3e8122efeda768e9331b8d707eca556942a16a Mon Sep 17 00:00:00 2001 From: Ethan Date: Thu, 2 Jun 2022 11:50:38 -0400 Subject: Issue templates, PR templates, Contributing.md Patch (#30) * Fix spelling and add a couple of things. * Create pull_request_template.md * Create bug_report.yml * Create config.yml * Create feature_request.yml * Update pull_request_template.md * Update CONTRIBUTING.md Co-authored-by: DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.yml | 39 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++++ .github/ISSUE_TEMPLATE/feature_request.yml | 5 ++++ .github/pull_request_template.md | 12 +++++++++ 4 files changed, 61 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/pull_request_template.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..c5be7ab --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,39 @@ +name: Bug Report +description: File a bug report +labels: "bug" +body: +- type: markdown + attributes: + value: Before raising an issue, please search for existing issues to avoid creating duplicates. For questions and support please use [Discord](https://polyfrost.cc/discord). +- type: textarea + id: bug-description + attributes: + label: Bug description + description: Summarize the bug encountered concisely + validations: + required: true +- type: textarea + id: version-data + description: The version data e.g: Minecraft 2.10.2, OneConfig v0.1-alpha, Windows 12, etc. +- type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + description: Describe the steps to reproduce the issue + validations: + required: true +- type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: Describe what you should see instead +- type: textarea + id: example-repository + attributes: + label: Example repository + description: If possible, please create an [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug and link it here in the bug report +- type: textarea + id: anything-else + attributes: + label: Anything else? + description: Let us know if you have any additional feedback! diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..7263137 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Discord Server + url: https://polyfrost.cc/discord + about: Please ask and answer usage questions here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..b4ed087 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,5 @@ +--- +name: Feature request +about: Suggest an idea for OneConfig + +--- diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..4c4529d --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,12 @@ +## Description + + +## Related Issue(s) + + +## Checklist +- [ ] I proved a clear description of what was change +- [ ] I stated why this change was necessary +- [ ] I updated documentation or said what needs to be updated +- [ ] I made sure this change is backwards compatible +- [ ] This pull request is for one feature/bug fix -- cgit