Skip to content

Commit 3dc5d16

Browse files
authored
Merge pull request #1653 from abravalheri/issue-templates
Add simple issue template
2 parents 0e8a7db + 3486a24 commit 3dc5d16

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: "Community Guidelines"
4+
url: "https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md"
5+
about: "Please make sure to follow the PSF Code of Conduct when participating in this repository."

.github/ISSUE_TEMPLATE/general.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: General Issue
2+
description: Please fill out the form below to submit an issue.
3+
labels: []
4+
assignees: []
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
**Thanks for taking a minute to file an issue!**
11+
12+
Read the [PSF Code of Conduct][CoC] first.
13+
14+
15+
Verify first that your issue is not [already reported on
16+
GitHub][issue search].
17+
18+
_Please fill out the form below with as many precise
19+
details as possible._
20+
21+
[CoC]: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
22+
[issue search]: ../search?q=is%3Aissue&type=issues
23+
24+
- type: textarea
25+
attributes:
26+
label: Issue Description
27+
description: Please provide a detailed description of your issue.
28+
placeholder: Describe your issue here...
29+
validations:
30+
required: true
31+
32+
- type: checkboxes
33+
attributes:
34+
label: Code of Conduct
35+
options:
36+
- label: I am aware that participants in this repository must follow the PSF Code of Conduct.
37+
required: true

0 commit comments

Comments
 (0)