Skip to content

Commit a1fb2af

Browse files
committed
Add GitHub issue templates
1 parent a6bd846 commit a1fb2af

File tree

3 files changed

+122
-0
lines changed

3 files changed

+122
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels:
5+
- bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thank you for taking the time to fill out this bug report!
11+
12+
If you haven't already, please also check [currently open issues](https://github.com/Pythagora-io/gpt-pilot/issues/) to see if the problem you have is already mentioned. If so, please comment on the the existing issue instead of creating a new one.
13+
14+
We also have an [active community on Discord](https://discord.gg/HaqXugmxr9). If the issue is more about how to do something with GPT Pilot and not about a bug or problem, consider joining our Discord and discussing there, as it's possible other community members could help you!
15+
- type: dropdown
16+
id: client
17+
attributes:
18+
label: Version
19+
description: Which version of GPT Pilot are you using?
20+
options:
21+
- VisualStudio Code extension
22+
- Command-line (Python) version
23+
validations:
24+
required: true
25+
- type: dropdown
26+
id: os
27+
attributes:
28+
label: Operating System
29+
description: Which operating system are you using?
30+
options:
31+
- Windows 10
32+
- Windows 11
33+
- MacOS
34+
- Ubuntu Linux
35+
- Linux (other)
36+
validations:
37+
required: true
38+
- type: textarea
39+
id: what-happened
40+
attributes:
41+
label: What happened?
42+
description: Please describe the problem in as much detail as possible. If you have screenshots or screen recordings, please add them - they will help us figure out what's going on.
43+
placeholder: "When I do [something], [a strange thing or a bug] happens instead of [what I expected]."
44+
validations:
45+
required: true
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Feature request
2+
description: Suggest a feature or improvement
3+
title: "[Enhancement]: "
4+
labels:
5+
- enhancement
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thank you for taking the time to suggest improvement to GPT Pilot!
11+
12+
If you haven't already, please also check [currently open issues](https://github.com/Pythagora-io/gpt-pilot/issues/) to see if this is a commonly-asked feature. If so, please comment on the the existing issue instead of creating a new one.
13+
14+
We also have an [active community on Discord](https://discord.gg/HaqXugmxr9), so please consider joining and sharing your idea with the rest of the community.
15+
- type: dropdown
16+
id: client
17+
attributes:
18+
label: Version
19+
description: Which version of GPT Pilot does this apply?
20+
options:
21+
- VisualStudio Code extension
22+
- Command-line (Python) version
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: idea
27+
attributes:
28+
label: Suggestion
29+
description: Please describe your suggestion for the improvement or new feature here.
30+
placeholder: "It would be cool if GPT Pilot could do [something]."
31+
validations:
32+
required: true

.github/ISSUE_TEMPLATE/howto.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: How do I...?
2+
description: Ask for help if you're stuck
3+
title: "[Howto]: "
4+
labels:
5+
- question
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for trying out GPT Pilot!
11+
12+
In general, it's best to ask the question [in our community Discord](https://discord.gg/HaqXugmxr9). We have an active and friendly community and you will likely get an answer quicker than if you post here. You can also check our [open issues](https://github.com/Pythagora-io/gpt-pilot/issues/) and see if what you're asking about was already discussed there.
13+
14+
BTW: If you're wondering how to use GPT Pilot with a local LLM, please check our tutorial here: [Using GPT Pilot with Local LLMs](https://github.com/Pythagora-io/gpt-pilot/wiki/Using-GPT%E2%80%90Pilot-with-Local-LLMs).
15+
- type: dropdown
16+
id: client
17+
attributes:
18+
label: Version
19+
description: Which version of GPT Pilot are you using?
20+
options:
21+
- VisualStudio Code extension
22+
- Command-line (Python) version
23+
validations:
24+
required: true
25+
- type: dropdown
26+
id: os
27+
attributes:
28+
label: Operating System
29+
description: Which operating system are you using?
30+
options:
31+
- Windows 10
32+
- Windows 11
33+
- MacOS
34+
- Ubuntu Linux
35+
- Linux (other)
36+
validations:
37+
required: true
38+
- type: textarea
39+
id: question
40+
attributes:
41+
label: Your question
42+
description: Please describe your question in as much detail as possible.
43+
placeholder: "How can I do [something] with GPT Pilot? I've checked the open issues and Discord and there doesn't seem to be an answer to this."
44+
validations:
45+
required: true

0 commit comments

Comments
 (0)