mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 04:35:24 +00:00
Switch from issue templates to issue forms
This commit is contained in:
parent
084db0cea3
commit
afad3a7704
28
.github/ISSUE_TEMPLATE/bug_report.md
vendored
28
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,28 +0,0 @@
|
|||||||
---
|
|
||||||
name: Bug Report
|
|
||||||
about: Create a bug report affecting the framework or the documentation
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- WARNING: Ignoring or altering this template could lead to the issue being closed as invalid -->
|
|
||||||
|
|
||||||
## Checklist
|
|
||||||
- [ ] I am sure the error is coming from Pyrogram's code and not elsewhere.
|
|
||||||
- [ ] I have searched in the issue tracker for similar bug reports, including closed ones.
|
|
||||||
- [ ] I ran `pip3 install -U https://github.com/pyrogram/pyrogram/archive/master.zip` and reproduced the issue using the latest development version.
|
|
||||||
|
|
||||||
## Description
|
|
||||||
A **clear** and **concise** description of the problem. Code snippets must be
|
|
||||||
[minimal, reproducible](https://stackoverflow.com/help/minimal-reproducible-example) and properly formatted.
|
|
||||||
|
|
||||||
``` python
|
|
||||||
from pyrogram import Client
|
|
||||||
...
|
|
||||||
```
|
|
||||||
|
|
||||||
## Traceback
|
|
||||||
The full traceback (if applicable).
|
|
||||||
|
|
||||||
```
|
|
||||||
Traceback (most recent call last):
|
|
||||||
File "main.py", line 1, in <module>
|
|
||||||
```
|
|
51
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
51
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
name: Bug report
|
||||||
|
description: Report issues affecting the framework or the documentation
|
||||||
|
body:
|
||||||
|
- type: checkboxes
|
||||||
|
attributes:
|
||||||
|
label: Checklist
|
||||||
|
options:
|
||||||
|
- label: I am sure the error is coming from Pyrogram's code and not elsewhere
|
||||||
|
required: true
|
||||||
|
- label: I have searched in the issue tracker for similar bug reports, including closed ones
|
||||||
|
required: true
|
||||||
|
- label: I ran `pip3 install -U https://github.com/pyrogram/pyrogram/archive/master.zip` and reproduced the issue using the latest development version
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: Provide a clear and concise description of the issue
|
||||||
|
placeholder: Description...
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: Explain precisely how to reproduce the issue
|
||||||
|
placeholder: |
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Code example
|
||||||
|
description: Provide a [minimal, reproducible](https://stackoverflow.com/help/minimal-reproducible-example) and properly formatted example (if applicable)
|
||||||
|
placeholder: |
|
||||||
|
from pyrogram import Client
|
||||||
|
...
|
||||||
|
render: python
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Logs
|
||||||
|
description: Provide the complete traceback (if applicable)
|
||||||
|
placeholder: |
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "main.py", line 1, in <module>
|
||||||
|
...
|
||||||
|
render: shell
|
14
.github/ISSUE_TEMPLATE/feature_request.md
vendored
14
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
name: Feature Request
|
|
||||||
about: Suggest ideas, new features or enhancements
|
|
||||||
labels: "enhancement"
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- WARNING: Ignoring or altering this template could lead to the issue being closed as invalid -->
|
|
||||||
|
|
||||||
## Checklist
|
|
||||||
- [ ] I believe the idea is awesome and would benefit the framework.
|
|
||||||
- [ ] I have searched in the issue tracker for similar requests, including closed ones.
|
|
||||||
|
|
||||||
## Description
|
|
||||||
A detailed description of the request.
|
|
20
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: Feature request
|
||||||
|
description: Suggest ideas, new features or enhancements
|
||||||
|
labels: [enhancement]
|
||||||
|
body:
|
||||||
|
- type: checkboxes
|
||||||
|
attributes:
|
||||||
|
label: Checklist
|
||||||
|
options:
|
||||||
|
- label: I believe the idea is awesome and would benefit the framework
|
||||||
|
required: true
|
||||||
|
- label: I have searched in the issue tracker for similar requests, including closed ones
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: Provide a detailed description of the request
|
||||||
|
placeholder: Description...
|
||||||
|
validations:
|
||||||
|
required: true
|
Loading…
Reference in New Issue
Block a user