Skip to content

Commit e4fafc3

Browse files
committed
Divide template into several types
1 parent 0036bf3 commit e4fafc3

File tree

6 files changed

+56
-68
lines changed

6 files changed

+56
-68
lines changed

.github/ISSUE_TEMPLATE/bugs.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Bug Report"
2+
description: "File a bug report to fix issues in the codebase"
3+
title: "[Bug] - "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "# Bug report"
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: "What bug did you find in the codebase?"
13+
description: "Please explain the issue in as much detail as possible. Provide screenshots as necessary"
14+
validations:
15+
required: true

.github/ISSUE_TEMPLATE/code-contribution-template.md

Lines changed: 0 additions & 68 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/docs.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Documentation
2+
description: Request to update documentation or fix typos
3+
title: "[Docs] - "
4+
labels: ["documentation"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "# Update documentation"
9+
- type: textarea
10+
id: docs
11+
attributes:
12+
label: What changes would you like to make in the documentation?
13+
description: Please explain the issue and what the change should be
14+
validations:
15+
required: true

.github/ISSUE_TEMPLATE/features.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Feature request
2+
description: Request for feature
3+
title: "[Feature] - "
4+
labels: ["feature"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "# Feature request"
9+
- type: textarea
10+
id: feature
11+
attributes:
12+
label: What feature would you like to see?
13+
description: Please provide a detailed description for the new feature.

.github/ISSUE_TEMPLATE/general.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: General report
2+
description: This is a general issue that does not fit in the other categories
3+
title: "[General] - "
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: "# General"
8+
- type: textarea
9+
id: description
10+
attributes:
11+
label: What general issue would you like to create?
12+
description: Please be as detailed as possible. Include code snippets or screenshots if necessary.

0 commit comments

Comments
 (0)