summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-07-05 15:15:41 +0200
committerGitHub <noreply@github.com>2021-07-05 15:15:41 +0200
commita6983268de09a57e29e370e1f6ca312f97836f63 (patch)
tree3ad0fba01dfcd41968a5ac43e5abe3ada35cab31 /.github
parent7e77a6b44145da98430f255e56b9b3a06dd05c7a (diff)
docs(issue_template): migrate from .md to .yml format (#6621)
Co-authored-by: Gildor <521036+Jildor@users.noreply.github.com> Co-authored-by: Shauren <shauren.trinity@gmail.com> Co-authored-by: Treeston <14020072+treeston@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md56
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml92
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml6
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.md35
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.yml43
5 files changed, 141 insertions, 91 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 11bd83499c..0000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,56 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve.
-title: ''
-labels: ''
-assignees: ''
-
----
-
-<!-- IF YOU DO NOT FILL THIS TEMPLATE OUT, WE WILL CLOSE YOUR ISSUE
- You should always read how to properly fill out the bug report before continuing. https://www.azerothcore.org/wiki/issue-tracker-standards
- For issues containing a fix, please create a Pull Request following this tutorial: https://www.azerothcore.org/wiki/How-to-create-a-PR -->
-
-**CURRENT BEHAVIOUR:**
-<!-- If this is a crash report you should post the crashlog. Upload it to https://gist.github.com/ -->
-
-**EXPECTED BLIZZLIKE BEHAVIOUR:**
-<!-- What should happen instead -->
-
-**SOURCE:**
-<!-- If you can, include a source that can strengthen your claim -->
-
-**STEPS TO REPRODUCE THE PROBLEM:**
-<!-- Describe in a detailed step-by-step order how to reproduce the issue -->
-
-1.
-2.
-3.
-
-**EXTRA NOTES:**
-<!-- Any extra notes that can help solve the issue -->
-
-**AC HASH/COMMIT:**
-<!-- Always include the exact hash/commit you are using. Never write "latest"! -->
-
-**OPERATING SYSTEM:**
-<!-- Which OS are you running -->
-
-**MODULES:**
-<!-- Are you using any modules? List them here -->
-
-**CUSTOMIZATIONS:**
-<!-- Do you have any other customizations? List them here -->
-
-<!-- ------------------------- THE END ------------------------------
-Thank you for your contribution.
-If you use AzerothCore regularly, we really NEED your help to:
- - Test our fixes: https://www.azerothcore.org/wiki/How-to-test-a-PR
- - Report issues or suggestions: https://github.com/azerothcore/azerothcore-wotlk/issues/new/choose
- - Improve the documentation/wiki: https://www.azerothcore.org/wiki/home
-With your help, the project can evolve much quicker! -->
-
-
-<!-- NOTE
-If you intend to contribute repeatedly to our project, it is a good idea to join our discord channel.
-We set ranks for our contributors and give them access to special resources or knowledge: https://discord.com/invite/DasJqPba -->
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000000..c45f344256
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,92 @@
+name: Bug report
+description: Create a bug report to help us improve.
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thank you for taking your time to fill out a bug report. Remember to fill out all fields including the title above.
+ An issue that is not properly filled out will be closed.
+ You can read more about the standards for a bug report [here](https://www.azerothcore.org/wiki/issue-tracker-standards).
+ - type: textarea
+ id: current
+ attributes:
+ label: Current Behaviour
+ description: |
+ Description of the problem or issue here.
+ Include entries of affected creatures / items / quests / spells etc.
+ If this is a crash, post the crashlog (upload to https://gist.github.com/) and include the link here.
+ validations:
+ required: true
+ - type: textarea
+ id: expected
+ attributes:
+ label: Expected Blizzlike Behaviour
+ description: |
+ Tell us what should happen instead.
+ validations:
+ required: true
+ - type: textarea
+ id: source
+ attributes:
+ label: Source
+ description: |
+ If you have a source that proves how it is supposed to work, please add that to make it easier for devs to fix the issue.
+ validations:
+ required: false
+ - type: textarea
+ id: reproduce
+ attributes:
+ label: Steps to reproduce the problem
+ description: |
+ What does someone else need to do to encounter the same bug?
+ placeholder: |
+ 1. Step 1
+ 2. Step 2
+ 3. Step 3
+ validations:
+ required: true
+ - type: textarea
+ id: extra
+ attributes:
+ label: Extra Notes
+ description: |
+ Do you have any extra notes that can help solve the issue that does not fit any other field.
+ placeholder: |
+ None
+ validations:
+ required: false
+ - type: textarea
+ id: commit
+ attributes:
+ label: AC rev. hash/commit
+ description: |
+ Copy the result of `.server debug` command (if you need to run it from client get prat addon)
+ validations:
+ required: true
+ - type: textarea
+ id: os
+ attributes:
+ label: Operating system
+ description: |
+ Operating System, i.e. Windows 10 x64, Debian 10 x64, etc
+ validations:
+ required: true
+ - type: textarea
+ id: custom
+ attributes:
+ label: Custom changes or Modules
+ description: |
+ List which custom changes or modules you have applied, i.e. Eluna module, etc.
+ placeholder: |
+ None
+ validations:
+ required: false
+ - type: markdown
+ attributes:
+ value: |
+ Thank you for your contribution.
+ If you use AzerothCore regularly, we really NEED your help to:
+ - Test our fixes: https://www.azerothcore.org/wiki/How-to-test-a-PR
+ - Report issues or suggestions: https://github.com/azerothcore/azerothcore-wotlk/issues/new/choose
+ - Improve the documentation/wiki: https://www.azerothcore.org/wiki/home
+ With your help, the project can evolve much quicker!
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index c788d5b0ae..c0bf69c56a 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -9,6 +9,12 @@ contact_links:
- name: How to ask for help
url: https://www.azerothcore.org/wiki/How-to-ask-for-help
about: Before submitting an issue we'd love if you take a minute to read this.
+ - name: FAQ
+ url: https://www.azerothcore.org/wiki/faq
+ about: Frequently asked questions.
+ - name: Common Errors
+ url: https://www.azerothcore.org/wiki/common-errors
+ about: You can find common errors and their solutions here.
- name: Discord
url: https://discord.gg/gkt4y2x
about: Join the discussions over at our Discord Server.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index 765069383a..0000000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,35 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: 'Feature: '
-labels: Suggestion
-assignees: ''
-
----
-
-<!-- IF YOU DO NOT FILL THIS TEMPLATE OUT, WE WILL CLOSE YOUR ISSUE! -->
-
-<!-- This template is made for feature requests or suggestions on the project only. -->
-
-**Describe your feature request or suggestion in detail**
-<!-- A clear and concise description of what you want to happen. -->
-
-**Describe a possible solution to your Feature or Suggestion in detail**
-<!-- A clear and concise description of any alternative solutions or features you've considered. -->
-
-**Additional context**
-<!-- Add any other context or screenshots about the feature request here. -->
-
-
-<!-- ------------------------- THE END ------------------------------
-Thank you for your contribution.
-If you use AzerothCore regularly, we really NEED your help to:
- - TEST our fixes ( http://www.azerothcore.org/wiki/Contribute#how-to-test-a-pull-request )
- - Report issues
- - Improve the documentation/wiki
-With your help, the project can evolve much quicker!
--->
-
-
-<!-- NOTE: If you intend to contribute more than once, you should really join us on our discord channel! We set cosmetic ranks for our contributors and may give access to special resources/knowledge to them! The link is on our site http://azerothcore.org/
--->
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 0000000000..70bbbbcae6
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,43 @@
+name: Feature request
+description: Suggest an idea for this project
+title: "Feature: "
+labels: [Suggestion]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thank you for taking your time to fill out a feature request. Remember to fill out all fields including the title above.
+ An issue that is not properly filled out will be closed.
+ - type: textarea
+ id: description
+ attributes:
+ label: Describe your feature request or suggestion in detail
+ description: |
+ A clear and concise description of what you want to happen.
+ validations:
+ required: true
+ - type: textarea
+ id: solution
+ attributes:
+ label: Describe a possible solution to your feature or suggestion in detail
+ description: |
+ A clear and concise description of any alternative solutions or features you've considered.
+ validations:
+ required: false
+ - type: textarea
+ id: additional
+ attributes:
+ label: Additional context
+ description: |
+ Add any other context or screenshots about the feature request here.
+ validations:
+ required: false
+ - type: markdown
+ attributes:
+ value: |
+ Thank you for your contribution.
+ If you use AzerothCore regularly, we really NEED your help to:
+ - Test our fixes: https://www.azerothcore.org/wiki/How-to-test-a-PR
+ - Report issues or suggestions: https://github.com/azerothcore/azerothcore-wotlk/issues/new/choose
+ - Improve the documentation/wiki: https://www.azerothcore.org/wiki/home
+ With your help, the project can evolve much quicker!