Skip to content

Commit 47a2657

Browse files
committed
2 parents 372cf0a + 5fdf4af commit 47a2657

File tree

4 files changed

+120
-0
lines changed

4 files changed

+120
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: "\U0001F41E Bug report"
2+
description: Report an issue with Flatbread
3+
labels: ['bug']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: Describe the bug
13+
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
14+
placeholder: Bug description
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reproduction
19+
attributes:
20+
label: Reproduction
21+
description: Please provide a link to a repo or REPL that can reproduce the problem you ran into. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided within a reasonable time-frame, the issue will be closed.
22+
placeholder: Reproduction
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: logs
27+
attributes:
28+
label: Logs
29+
description: 'Please include browser console / server logs around the time this bug occurred. Optional if provided reproduction. Please try not to insert an image, but copy paste the log text.'
30+
render: shell
31+
- type: textarea
32+
id: system-info
33+
attributes:
34+
label: System Info
35+
description: Output of `npx envinfo --system --npmPackages '{flatbread,@flatbread/*}' --binaries --browsers`
36+
render: shell
37+
placeholder: System, Binaries, Browsers
38+
validations:
39+
required: true
40+
- type: dropdown
41+
id: severity
42+
attributes:
43+
label: Severity
44+
description: Select the severity of this issue
45+
options:
46+
- annoyance
47+
- blocking an upgrade
48+
- blocking all usage of Flatbread
49+
validations:
50+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Slack channel
4+
url: https://join.slack.com/t/flatbreadworkspace/shared_invite/zt-1bvnhr38j-oHFun85aGfaNp9qwizOORw
5+
about: Ask questions and discuss with other Flatbread users in real time.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: 'Feature Request'
2+
description: Request a new Flatbread feature
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to request this feature! If your feature request is complex or substantial enough to warrant in-depth discussion, maintainers may close the issue and ask you to open a [discussion](https://github.com/FlatbreadLabs/flatbread/discussions/categories/ideas).
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: Describe the problem
13+
description: Please provide a clear and concise description the problem this feature would solve. The more information you can provide here, the better.
14+
placeholder: I'm always frustrated when...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: solution
19+
attributes:
20+
label: Describe the proposed solution
21+
description: Please provide a clear and concise description of what you would like to happen.
22+
placeholder: I would like to see...
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: Alternatives considered
29+
description: "Please provide a clear and concise description of any alternative solutions or features you've considered."
30+
validations:
31+
required: true
32+
- type: dropdown
33+
id: importance
34+
attributes:
35+
label: Importance
36+
description: How important is this feature to you?
37+
options:
38+
- Nice to have
39+
- Would make my life easier
40+
- I cannot use Flatbread without it
41+
validations:
42+
required: true
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Summary of changes**
2+
3+
<!-- This message body should clearly illustrate what problems it solves. -->
4+
5+
Closes # <!-- It's really useful if your PR references an issue where it is discussed ahead of time. If this PR closes any issues, please list them here with a seperate `Closes #<issue-number>` line for each. If there are any related issues that this does not close, list them without the "Closes" prefix. -->
6+
7+
### Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
8+
9+
- [ ] I added doc comments to any new public exports, and inline comments to any hard-to-understand areas
10+
- [ ] My changes generate no new console errors locally
11+
- [ ] If applicable, try to include a test that fails without this PR but passes with it
12+
13+
14+
### Does this introduce any non-backwards compatible changes?
15+
16+
- [ ] Yes
17+
- [ ] No
18+
19+
### Does this include any user config changes?
20+
21+
- [ ] Yes
22+
- [ ] If so, I have updated the relevant areas of documentation
23+
- [ ] No

0 commit comments

Comments
 (0)