Skip to content

Commit cabd8c6

Browse files
authored
feat: basic issue forms (#6533)
1 parent 346b0a8 commit cabd8c6

File tree

3 files changed

+85
-0
lines changed

3 files changed

+85
-0
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug_report.yaml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Bug report
2+
description: Create a bug report to help us address errors in the repository
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Before requesting please search [existing issues](https://github.com/TheAlgorithms/Python/labels/bug).
9+
Usage questions such as "How do I...?" belong on the
10+
[Discord](https://discord.gg/c7MnfGFGa6) and will be closed.
11+
12+
- type: input
13+
attributes:
14+
label: "Repository commit"
15+
description: |
16+
The commit hash for `TheAlgorithms/Python` repository. You can get this
17+
by running the command `git rev-parse HEAD` locally.
18+
placeholder: "a0b0f414ae134aa1772d33bb930e5a960f9979e8"
19+
validations:
20+
required: true
21+
22+
- type: input
23+
attributes:
24+
label: "Python version (python --version)"
25+
placeholder: "Python 3.10.7"
26+
validations:
27+
required: true
28+
29+
- type: input
30+
attributes:
31+
label: "Dependencies version (pip freeze)"
32+
description: |
33+
This is the output of the command `pip freeze --all`. Note that the
34+
actual output might be different as compared to the placeholder text.
35+
placeholder: |
36+
appnope==0.1.3
37+
asttokens==2.0.8
38+
backcall==0.2.0
39+
...
40+
validations:
41+
required: true
42+
43+
- type: textarea
44+
attributes:
45+
label: "Expected behavior"
46+
description: "Describe the behavior you expect. May include images or videos."
47+
validations:
48+
required: true
49+
50+
- type: textarea
51+
attributes:
52+
label: "Actual behavior"
53+
validations:
54+
required: true

Diff for: .github/ISSUE_TEMPLATE/config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discord community
4+
url: https://discord.gg/c7MnfGFGa6
5+
about: Have any questions or need any help? Please contact us via Discord

Diff for: .github/ISSUE_TEMPLATE/feature_request.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Feature request
2+
description: Suggest features, propose improvements, discuss new ideas.
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Before requesting please search [existing issues](https://github.com/TheAlgorithms/Python/labels/enhancement).
9+
Usage questions such as "How do I...?" belong on the
10+
[Discord](https://discord.gg/c7MnfGFGa6) and will be closed.
11+
12+
- type: textarea
13+
attributes:
14+
label: "Feature description"
15+
description: |
16+
This could be new algorithms, data structures or improving any existing
17+
implementations.
18+
validations:
19+
required: true
20+
21+
- type: checkboxes
22+
attributes:
23+
label: Would you like to work on this feature?
24+
options:
25+
- label: Yes, I want to work on this feature!
26+
required: false

0 commit comments

Comments
 (0)