Skip to content

Commit 7846194

Browse files
Tiffany Le-Nguyenascorbic
andauthored
chore: Update bug_report.yml (#999)
* Update bug_report.yml * Update bug_report.yml * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Matt Kane <[email protected]> * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Matt Kane <[email protected]> * Update bug_report.yml Co-authored-by: Matt Kane <[email protected]>
1 parent 9a387d4 commit 7846194

File tree

1 file changed

+77
-4
lines changed

1 file changed

+77
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 77 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
Thanks for taking the time to fill out this bug report!
9+
Thanks for taking the time to fill out this bug report! Using this template makes it a lot easier for us to diagnose your problem, so please fill in as many fields as possible.
10+
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Summary
15+
description: A short description of the problem
16+
placeholder: |
17+
Include what you expected to happen, and what actually happened.
18+
validations:
19+
required: true
1020
- type: textarea
1121
id: steps-to-reproduce
1222
attributes:
@@ -59,7 +69,7 @@ body:
5969
- type: textarea
6070
id: netlify-toml
6171
attributes:
62-
label: Your `netlify.toml` file
72+
label: Your netlify.toml file
6373
description: (If you're using file-based config) Please provide a copy of your `netlify.toml` file.
6474
value: |
6575
<details>
@@ -72,9 +82,39 @@ body:
7282
</details>
7383
7484
- type: textarea
75-
id: logs
85+
id: redirects-file
86+
attributes:
87+
label: Your public/_redirects file
88+
description: Please provide a copy of your `_redirects` file if you have one.
89+
value: |
90+
<details>
91+
<summary>`_redirects`</summary>
92+
93+
```toml
94+
# Paste content of your `_redirects` file here
95+
```
96+
97+
</details>
98+
99+
- type: textarea
100+
id: next-config
101+
attributes:
102+
label: Your `next.config.js` file
103+
description: Please provide a copy of your `next.config.js` file.
104+
value: |
105+
<details>
106+
<summary>`next.config.js`</summary>
107+
108+
```toml
109+
# Paste content of your `next.config.js` file here. Check there is no private info in there.
110+
```
111+
112+
</details>
113+
114+
- type: textarea
115+
id: build-logs
76116
attributes:
77-
label: Relevant log output (or link to your logs)
117+
label: Builds logs (or link to your logs)
78118
value: |
79119
<details>
80120
<summary>Build logs</summary>
@@ -84,3 +124,36 @@ body:
84124
```
85125
86126
</details>
127+
128+
- type: textarea
129+
id: function-logs
130+
attributes:
131+
label: Function logs
132+
description: If it is a runtime error, please provide a copy of the relevant function logs.
133+
value: |
134+
<details>
135+
<summary>Function logs</summary>
136+
137+
```
138+
# Paste logs here
139+
```
140+
141+
</details>
142+
143+
- type: textarea
144+
145+
id: next-build
146+
attributes:
147+
label: .next JSON files
148+
description:
149+
(e.g. `.next/required-server-files.json`, `.next/routes-manifest.json` and `.next/prerender-manifest.json`).
150+
value: |
151+
<details>
152+
<summary>generated .next JSON files</summary>
153+
154+
```
155+
# Paste file contents here. Please check there isn't any private info in them
156+
# You can either build locally, or download the deploy from Netlify by clicking the arrow next to the deploy time.
157+
```
158+
159+
</details>

0 commit comments

Comments
 (0)