Skip to content

Commit 9014fbc

Browse files
docs: add GitHub Issue Form for bug reports
1 parent 340edb6 commit 9014fbc

File tree

1 file changed

+159
-0
lines changed

1 file changed

+159
-0
lines changed
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
name: Bug report 🐞
2+
description: Report a bug or internal server error when using Gitingest
3+
title: "(bug): "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to report a bug! :lady_beetle:
10+
11+
Please fill out the following details to help us reproduce and fix the issue. :point_down:
12+
13+
- type: dropdown
14+
id: interface
15+
attributes:
16+
label: Which interface did you use?
17+
default: 0
18+
options:
19+
- "Select one..."
20+
- Web UI
21+
- CLI
22+
- PyPI package
23+
validations:
24+
required: true
25+
26+
- type: input
27+
id: repo_url
28+
attributes:
29+
label: Repository URL (if public)
30+
placeholder: e.g., https://github.com/<username>/<repo>/commit_branch_or_tag/blob_or_tree/subdir
31+
32+
- type: dropdown
33+
id: git_host
34+
attributes:
35+
label: Git host
36+
description: The Git host of the repository.
37+
default: 0
38+
options:
39+
- "Select one..."
40+
- GitHub (github.com)
41+
- GitLab (gitlab.com)
42+
- Bitbucket (bitbucket.org)
43+
- Gitea (gitea.com)
44+
- Codeberg (codeberg.org)
45+
- Gist (gist.github.com)
46+
- Kaggle (kaggle.com)
47+
- GitHub Enterprise (github.company.com)
48+
- Other (specify below)
49+
validations:
50+
required: true
51+
52+
- type: input
53+
id: git_host_other
54+
attributes:
55+
label: Other Git host
56+
placeholder: If you selected "Other", please specify the Git host here.
57+
58+
- type: dropdown
59+
id: repo_visibility
60+
attributes:
61+
label: Repository visibility
62+
default: 0
63+
options:
64+
- "Select one..."
65+
- public
66+
- private
67+
validations:
68+
required: true
69+
70+
- type: dropdown
71+
id: revision
72+
attributes:
73+
label: Commit, branch, or tag
74+
default: 0
75+
options:
76+
- "Select one..."
77+
- default branch
78+
- commit
79+
- branch
80+
- tag
81+
validations:
82+
required: true
83+
84+
- type: dropdown
85+
id: ingest_scope
86+
attributes:
87+
label: Did you ingest the full repository or a subdirectory?
88+
default: 0
89+
options:
90+
- "Select one..."
91+
- full repository
92+
- subdirectory
93+
validations:
94+
required: true
95+
96+
- type: dropdown
97+
id: os
98+
attributes:
99+
label: Operating system
100+
default: 0
101+
options:
102+
- "Select one..."
103+
- macOS
104+
- Windows
105+
- Linux
106+
- Not relevant (Web UI)
107+
validations:
108+
required: true
109+
110+
- type: input
111+
id: gitingest_version
112+
attributes:
113+
label: Gitingest version
114+
placeholder: e.g., v0.1.5
115+
description: Not required if you used the Web UI.
116+
117+
- type: input
118+
id: python_version
119+
attributes:
120+
label: Python version
121+
placeholder: e.g., 3.11.5
122+
description: Not required if you used the Web UI.
123+
124+
- type: textarea
125+
id: bug_description
126+
attributes:
127+
label: Bug description
128+
placeholder: Describe the bug here.
129+
description: A detailed but concise description of the bug.
130+
validations:
131+
required: true
132+
133+
134+
- type: textarea
135+
id: steps_to_reproduce
136+
attributes:
137+
label: Steps to reproduce
138+
placeholder: Include the exact commands or actions that led to the error.
139+
description: Include the exact commands or actions that led to the error *(if relevant)*.
140+
render: shell
141+
142+
- type: textarea
143+
id: expected_behavior
144+
attributes:
145+
label: Expected behavior
146+
placeholder: Describe what you expected to happen.
147+
description: Describe what you expected to happen *(if relevant)*.
148+
149+
- type: textarea
150+
id: actual_behavior
151+
attributes:
152+
label: Actual behavior
153+
description: Paste the full error message or stack trace here.
154+
155+
- type: textarea
156+
id: additional_context
157+
attributes:
158+
label: Additional context, logs, or screenshots
159+
placeholder: Add any other context, links, or screenshots about the issue here.

0 commit comments

Comments
 (0)