Skip to content

Commit

Permalink
Modernize issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Jan 30, 2023
1 parent bcfb5e8 commit 5823c0e
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Bug Report
description: Encountered an issue? File a bug report!
labels: [bug]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report! To get off to a good start, make sure to:
* Search if there is an existing issue on the topic
* Get familiar with the [contributing guidelines](https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md)
- type: textarea
id: description
attributes:
label: Bug description
description: What happened? What was the expected behavior?
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Steps to reproduce
description: |
How can the issue be reproduced? A minimum example is best. Tip: Use [code blocks](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).
validations:
required: true
- type: input
id: version
attributes:
label: AssemblyScript version
description: "What's the AssemblyScript version used?"
placeholder: "vX.Y.Z"
validations:
required: true
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Feature suggestion
description: Got a neat idea? File a feature suggestion!
labels: [enhancement]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature suggestion! To get off to a good start, make sure to:
* Search if there is an existing issue on the topic
* See if the feature is mentioned at [implementation status](https://www.assemblyscript.org/status.html)
* Get familiar with the [contributing guidelines](https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md)
- type: textarea
id: description
attributes:
label: Feature suggestion
description: Please describe the feature you'd like to suggest.
validations:
required: true
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Ask a question
description: Wondering how to achieve something specific? Ask a question!
labels: [question]
body:
- type: markdown
attributes:
value: |
To get off to a good start, make sure to:
* Consider asking questions on our [community Discord](https://discord.gg/assemblyscript) instead
* Search if there is an existing issue on the topic
- type: textarea
id: description
attributes:
label: Question
description: What would you like to know?
validations:
required: true
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
Thanks for submitting a pull request to AssemblyScript! Please take a moment to
review the contributing guidelines linked below, and confirm with an [x] 🙂
-->
Fixes # .

Changes proposed in this pull request:
Expand Down

0 comments on commit 5823c0e

Please sign in to comment.