-
-
Notifications
You must be signed in to change notification settings - Fork 12
36 lines (33 loc) · 1.33 KB
/
issues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Issue FAQ
on:
issues:
types:
- opened
jobs:
add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add comment
run: gh issue comment "$NUMBER" --body "$BODY"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
BODY: >
Thank you for opening an issue!<br>
Please, first check our [FAQ](https://github.com/iwatkot/py3xui/discussions/categories/faq) section in discussions to see if your question has already been answered.<br>
You can also use Discussion if you have any questions or suggestions, while the Issues section is for bug reports and feature requests.<br>
If you want to proceed with the issue, please provide the following information:<br>
- Description of the issue<br>
- Expected behavior<br>
- Actual behavior<br>
- Steps to reproduce the issue<br>
- Python version<br>
- OS<br>
- py3xui version<br>
- 3x-UI version<br>
- Code snippet or a minimal example to reproduce the issue (if applicable)<br>
- JSON representation of the request to the API (if applicable)<br>
Thank you!