-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
labels: ["bug"] | ||
assignees: | ||
- alphapapa | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: os-platform | ||
attributes: | ||
label: OS/platform | ||
description: What operating system or platform are you running Emacs on? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: emacs-provenance | ||
attributes: | ||
label: Emacs version and provenance | ||
description: What version of Emacs are you using, where did you acquire it, and how did you install it? | ||
validations: | ||
required: true | ||
- type: input | ||
id: emacs-command | ||
attributes: | ||
label: Emacs command | ||
description: By what method did you run Emacs? (i.e. what command did you run?) | ||
validations: | ||
required: true | ||
# - type: input | ||
# id: emacs-frame | ||
# attributes: | ||
# label: Emacs frame type | ||
# description: Did the problem happen on a GUI or tty Emacs frame? | ||
# validations: | ||
# required: true | ||
- type: input | ||
id: package-provenance | ||
attributes: | ||
label: org-ql package version and provenance | ||
description: What version of org-ql are you using, where did you acquire it, and how did you install it? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actions | ||
attributes: | ||
label: Actions taken | ||
description: What actions did you take, step-by-step, in order, before the problem was noticed? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: results | ||
attributes: | ||
label: Observed results | ||
description: What behavior did you observe that seemed wrong? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected results | ||
description: What behavior did you expect to observe? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: backtrace | ||
attributes: | ||
label: Backtrace | ||
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. | ||
render: elisp | ||
- type: textarea | ||
id: etc | ||
attributes: | ||
label: Etc. | ||
description: Any other information that seems relevant | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Feature Request | ||
description: File a feature request | ||
labels: ["enhancement"] | ||
body: | ||
- type: input | ||
id: os-platform | ||
attributes: | ||
label: OS/platform | ||
description: What operating system or platform are you running Emacs on? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: emacs-provenance | ||
attributes: | ||
label: Emacs version and provenance | ||
description: What version of Emacs are you using, where did you acquire it, and how did you install it? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: org-provenance | ||
attributes: | ||
label: Org version and provenance | ||
description: What version of Org are you using, where did you acquire it, and how did you install it? | ||
validations: | ||
required: true | ||
- type: input | ||
id: package-provenance | ||
attributes: | ||
label: org-ql package version and provenance | ||
description: What version of org-ql are you using, where did you acquire it, and how did you install it? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Describe your request. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: etc | ||
attributes: | ||
label: Etc. | ||
description: Any other information that seems relevant | ||
|