Skip to content

Commit 5823c0e

Browse files
committedJan 30, 2023
Modernize issue templates
1 parent bcfb5e8 commit 5823c0e

File tree

5 files changed

+70
-4
lines changed

5 files changed

+70
-4
lines changed
 

‎.github/ISSUE_TEMPLATE.md

-4
This file was deleted.

‎.github/ISSUE_TEMPLATE/bug.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Bug Report
2+
description: Encountered an issue? File a bug report!
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report! To get off to a good start, make sure to:
9+
* Search if there is an existing issue on the topic
10+
* Get familiar with the [contributing guidelines](https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md)
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Bug description
15+
description: What happened? What was the expected behavior?
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: reproduction
20+
attributes:
21+
label: Steps to reproduce
22+
description: |
23+
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).
24+
validations:
25+
required: true
26+
- type: input
27+
id: version
28+
attributes:
29+
label: AssemblyScript version
30+
description: "What's the AssemblyScript version used?"
31+
placeholder: "vX.Y.Z"
32+
validations:
33+
required: true

‎.github/ISSUE_TEMPLATE/feature.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature suggestion
2+
description: Got a neat idea? File a feature suggestion!
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this feature suggestion! To get off to a good start, make sure to:
9+
* Search if there is an existing issue on the topic
10+
* See if the feature is mentioned at [implementation status](https://www.assemblyscript.org/status.html)
11+
* Get familiar with the [contributing guidelines](https://github.com/AssemblyScript/assemblyscript/blob/main/CONTRIBUTING.md)
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Feature suggestion
16+
description: Please describe the feature you'd like to suggest.
17+
validations:
18+
required: true

‎.github/ISSUE_TEMPLATE/question.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Ask a question
2+
description: Wondering how to achieve something specific? Ask a question!
3+
labels: [question]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
To get off to a good start, make sure to:
9+
* Consider asking questions on our [community Discord](https://discord.gg/assemblyscript) instead
10+
* Search if there is an existing issue on the topic
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Question
15+
description: What would you like to know?
16+
validations:
17+
required: true

‎.github/PULL_REQUEST_TEMPLATE.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
Thanks for submitting a pull request to AssemblyScript! Please take a moment to
33
review the contributing guidelines linked below, and confirm with an [x] 🙂
44
-->
5+
Fixes # .
56

7+
Changes proposed in this pull request:
68
79
810

0 commit comments

Comments
 (0)
Please sign in to comment.