From 4e49d9ac1d1ea06075030cd168002a65876db274 Mon Sep 17 00:00:00 2001 From: Hossin Asaadi Date: Sat, 19 Nov 2022 14:23:14 +0330 Subject: [PATCH] Create bug_report.yml (#82) --- .github/ISSUE_TEMPLATE/bug_report.yml | 57 +++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..39acf241 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,57 @@ +name: Issue Report +description: "Create a report to help us improve." +body: + - type: checkboxes + id: terms + attributes: + label: Welcome + options: + - label: Yes, I'm using the latest major release. Only such installations are supported. + required: true + - label: Yes, I'm using the supported system. Only such systems are supported. + required: true + - label: Yes, I have read all WIKI document,nothing can help me in my problem. + required: true + - label: Yes, I've searched similar issues on GitHub and didn't find any. + required: true + - label: Yes, I've included all information below (version, config, log, etc). + required: true + + - type: textarea + id: problem + attributes: + label: Description of the problem,screencshot would be good + placeholder: Your problem description + validations: + required: true + + - type: textarea + id: version + attributes: + label: Version of x-ui + value: |- +
+ + ```console + $ x-ui version + # Paste output here + ``` + +
+ validations: + required: true + + - type: textarea + id: log + attributes: + label: x-ui log or xray log + value: |- +
+ + ```console + # paste log here + ``` + +
+ validations: + required: true