Skip to content

Commit 4088fdb

Browse files
committed
Make good-first-issue into an Issue Form
This makes it harder for a non-maintainer to file these. We've have a few users use this, seemingly thinking it is for people filing their first GitHub issue.
1 parent 135faab commit 4088fdb

File tree

2 files changed

+38
-15
lines changed

2 files changed

+38
-15
lines changed

.github/ISSUE_TEMPLATE/~good-first-issue.md

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Good first issue
2+
description: If you're a pip maintainer, use this to create a "good first issue" for new contributors.
3+
labels: "good first issue"
4+
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Description
9+
description: >-
10+
A clear and concise description of what the task is.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
attributes:
16+
label: What needs to be done
17+
description: >-
18+
Describe what the contributor would need to do, describing the change.
19+
See https://github.com/pypa/pip/issues/7661 for example.
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
attributes:
25+
label: Guidance for potential contributors
26+
description: >-
27+
Usually, you don't have to modify the content here.
28+
value: >-
29+
This issue is a good starting point for first time contributors -- the
30+
process of fixing this should be a good introduction to pip's
31+
development workflow. If there is not a corresponding pull request for
32+
this issue, it is up for grabs. For directions for getting set up, see our
33+
[Getting Started Guide](https://pip.pypa.io/en/latest/development/getting-started/).
34+
If you are working on this issue and have questions, feel free to ask
35+
them here. If you've contributed code to pip before, we encourage you to
36+
pick up an issue without this label.
37+
validations:
38+
required: true

0 commit comments

Comments
 (0)