Skip to content

Commit 46cf54c

Browse files
author
Svetlana Karslioglu
committed
Add GH issue template
1 parent e1d645e commit 46cf54c

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Bug Report
2+
description: Create a tutorial bug report
3+
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: >
8+
#### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/pytorch/tutorials/issues?q=is%3Aissue+sort%3Acreated-desc+).
9+
- type: textarea
10+
attributes:
11+
label: Describe the bug
12+
description: |
13+
**Link to the tutorial on the website:** <Add link>
14+
placeholder: |
15+
Provide a detailed description of the issue with code samples if relevant
16+
```python
17+
18+
# Sample code to reproduce the problem if relevant
19+
```
20+
21+
**Expected Result:** (Describe what you were expecting to see)
22+
23+
24+
**Actual Result:** (Describe the result)
25+
26+
```
27+
The error message you got, with the full traceback.
28+
```
29+
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Describe your environment
35+
description: |
36+
**Describe your environment:**
37+
38+
* Platform (i.e macOS, Linux, Google Colab):
39+
* CUDA:
40+
* PyTorch version (run `python -c "import torch; print(torch.__version__)"`):
41+
42+
validations:
43+
required: true
44+
- type: markdown
45+
attributes:
46+
value: >
47+
Thanks for contributing 🎉!

0 commit comments

Comments
 (0)