Skip to content

Commit 059b10c

Browse files
committed
Meta: Add bug report template
1 parent 3dc2409 commit 059b10c

File tree

3 files changed

+124
-0
lines changed

3 files changed

+124
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Bug Report
2+
description: File a bug report
3+
labels: ["bug"]
4+
assignees:
5+
- alphapapa
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
- type: input
12+
id: os-platform
13+
attributes:
14+
label: OS/platform
15+
description: What operating system or platform are you running Emacs on?
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: emacs-provenance
20+
attributes:
21+
label: Emacs version and provenance
22+
description: What version of Emacs are you using, where did you acquire it, and how did you install it?
23+
validations:
24+
required: true
25+
- type: input
26+
id: emacs-command
27+
attributes:
28+
label: Emacs command
29+
description: By what method did you run Emacs? (i.e. what command did you run?)
30+
validations:
31+
required: true
32+
# - type: input
33+
# id: emacs-frame
34+
# attributes:
35+
# label: Emacs frame type
36+
# description: Did the problem happen on a GUI or tty Emacs frame?
37+
# validations:
38+
# required: true
39+
- type: input
40+
id: package-provenance
41+
attributes:
42+
label: org-ql package version and provenance
43+
description: What version of org-ql are you using, where did you acquire it, and how did you install it?
44+
validations:
45+
required: true
46+
- type: textarea
47+
id: actions
48+
attributes:
49+
label: Actions taken
50+
description: What actions did you take, step-by-step, in order, before the problem was noticed?
51+
validations:
52+
required: true
53+
- type: textarea
54+
id: results
55+
attributes:
56+
label: Observed results
57+
description: What behavior did you observe that seemed wrong?
58+
validations:
59+
required: true
60+
- type: textarea
61+
id: expected
62+
attributes:
63+
label: Expected results
64+
description: What behavior did you expect to observe?
65+
validations:
66+
required: true
67+
- type: textarea
68+
id: backtrace
69+
attributes:
70+
label: Backtrace
71+
description: If an error was signaled, please use `M-x toggle-debug-on-error RET` and cause the error to happen again, then paste the contents of the `*Backtrace*` buffer here.
72+
render: elisp
73+
- type: textarea
74+
id: etc
75+
attributes:
76+
label: Etc.
77+
description: Any other information that seems relevant
78+

.github/ISSUE_TEMPLATE/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Feature Request
2+
description: File a feature request
3+
labels: ["enhancement"]
4+
body:
5+
- type: input
6+
id: os-platform
7+
attributes:
8+
label: OS/platform
9+
description: What operating system or platform are you running Emacs on?
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: emacs-provenance
14+
attributes:
15+
label: Emacs version and provenance
16+
description: What version of Emacs are you using, where did you acquire it, and how did you install it?
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: org-provenance
21+
attributes:
22+
label: Org version and provenance
23+
description: What version of Org are you using, where did you acquire it, and how did you install it?
24+
validations:
25+
required: true
26+
- type: input
27+
id: package-provenance
28+
attributes:
29+
label: org-ql package version and provenance
30+
description: What version of org-ql are you using, where did you acquire it, and how did you install it?
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: description
35+
attributes:
36+
label: Description
37+
description: Describe your request.
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: etc
42+
attributes:
43+
label: Etc.
44+
description: Any other information that seems relevant
45+

0 commit comments

Comments
 (0)