|
| 1 | +name: "🐛 Bug Report" |
| 2 | +description: Submit a report to help us reproduce and fix the bug |
| 3 | +title: Title of your bug report |
| 4 | +labels: ["bug"] |
| 5 | + |
| 6 | +body: |
| 7 | + |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: Thanks for taking the time to fill out this bug report 🙏 ! |
| 11 | + |
| 12 | + - type: checkboxes |
| 13 | + attributes: |
| 14 | + label: ✅ Code of conduct checklist |
| 15 | + description: > |
| 16 | + Before submitting a bug, please make sure you went through the following |
| 17 | + steps. |
| 18 | + options: |
| 19 | + - label: "🌱 I am using the **_latest version_** of the [code](https://github.com/drprojects/point_geometric_features/tree/master)." |
| 20 | + required: true |
| 21 | + - label: "👩💻 I made sure the bug concerns the official [project's codebase](https://github.com/drprojects/point_geometric_features/tree/master) and not something I coded myself on top of it. (We only provide support for code we wrote and released ourselves)." |
| 22 | + required: true |
| 23 | + - label: "🔎 I took appropriate **_time_** to investigate the problem before filing an issue, but am unable to solve it myself." |
| 24 | + required: true |
| 25 | + - label: "📙 I **_thoroughly_** went through the [README](https://github.com/drprojects/point_geometric_features/blob/master/README.md), but could not find the solution there." |
| 26 | + required: true |
| 27 | + - label: "📜 I went through the **_docstrings_** and **_comments_** in the [source code](https://github.com/drprojects/point_geometric_features/tree/master) parts relevant to my problem, but could not find the solution there." |
| 28 | + required: true |
| 29 | + - label: "👩🔧 I searched for [**_similar issues_**](https://github.com/drprojects/point_geometric_features/issues), but could not find the solution there." |
| 30 | + required: true |
| 31 | + - label: "🔎 I made sure my bug is related to the [project's codebase](https://github.com/drprojects/point_geometric_features/tree/master) and is not in fact a sub-dependency issue." |
| 32 | + required: true |
| 33 | + - label: "⭐ Since I am showing interest in the project, I took the time to give the [repo](https://github.com/drprojects/point_geometric_features/tree/master) a ⭐ to show support. **Please do, it means a lot to us !**" |
| 34 | + required: true |
| 35 | + |
| 36 | + - type: textarea |
| 37 | + attributes: |
| 38 | + label: 🐛 Describe the bug |
| 39 | + description: > |
| 40 | + Please provide a _**clear and concise**_ description of the issue you |
| 41 | + are facing. If the code does not behave as anticipated, please describe |
| 42 | + the expected behavior. Include references to any relevant documentation |
| 43 | + or related issues. |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + |
| 47 | + - type: textarea |
| 48 | + id: logs |
| 49 | + attributes: |
| 50 | + label: 📜 Log output |
| 51 | + description: > |
| 52 | + If relevant, please copy and paste any useful log output. If copying an |
| 53 | + error message, make sure you provide the _**full traceback**_. This will |
| 54 | + be automatically rendered as shell code, so no need for backticks. |
| 55 | + placeholder: | |
| 56 | + << Full error message >> |
| 57 | + render: shell |
| 58 | + |
| 59 | + - type: textarea |
| 60 | + attributes: |
| 61 | + label: 🤖 Steps to reproduce the bug |
| 62 | + description: > |
| 63 | + Please provide a _**minimal reproducible example**_ to help us |
| 64 | + investigate the bug. |
| 65 | + placeholder: | |
| 66 | + A step-by-step recipe for reproducing your bug. Use backticks as shown |
| 67 | + below to write and render code snippets. |
| 68 | +
|
| 69 | + ```python |
| 70 | + # Some python code to reproduce the problem |
| 71 | + ``` |
| 72 | +
|
| 73 | + ``` |
| 74 | + Some error message you got, with the full traceback. |
| 75 | + ``` |
| 76 | + validations: |
| 77 | + required: true |
| 78 | + |
| 79 | + - type: textarea |
| 80 | + attributes: |
| 81 | + label: 📚 Additional information |
| 82 | + description: > |
| 83 | + Please add any additional information that could help us diagnose the |
| 84 | + problem better. Provide screenshots if applicable. You may attach |
| 85 | + log files, generated wheel, or any other file that could be helpful. |
| 86 | +
|
| 87 | + - type: textarea |
| 88 | + attributes: |
| 89 | + label: 🖥️ Environment |
| 90 | + description: | |
| 91 | + Please run the following and paste the output here. This will let us know more about your environment. |
| 92 | + ```sh |
| 93 | + curl -OL https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py |
| 94 | + # For security purposes, please check the contents of collect_env.py before running it. |
| 95 | + python3 collect_env.py |
| 96 | + ``` |
| 97 | + render: shell |
| 98 | + placeholder: | |
| 99 | + << Copy the output of `collect_env.py` here >> |
| 100 | + validations: |
| 101 | + required: true |
0 commit comments