Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bug_report.yml « ISSUE_TEMPLATE « .github - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f948f4a2a5441c87afbf21e915f96416b104ba7f (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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 3x-ui
      value: |-
        <details>

        ```console
        # Paste here
        ```

        </details>
    validations:
      required: true

  - type: textarea
    id: log
    attributes:
      label: x-ui log reports or xray log
      value: |-
        <details>

        ```console
        # paste log here
        ```

        </details>
    validations:
      required: true