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

01-bug_report.yml « ISSUE_TEMPLATE « .github - github.com/chipzoller/hugo-clarity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b987b6a5da5a75f72619331e401b298e3992f74f (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Bug report
description: Something isn't working correctly with the theme
title: "[Bug] "
labels: ["bug"]
body:
  - type: markdown
    attributes:
      value: |
        Before opening a bug report, please search for the behavior in the [existing issues](https://github.com/chipzoller/hugo-clarity/issues).

        If you have a question, please use [GitHub Discussions](https://github.com/chipzoller/hugo-clarity/discussions) rather than posting an issue.

        ---

        Thank you for taking the time to file a bug report! To address this bug as fast as possible, we need some information.
  - type: checkboxes
    id: confirm_prereqs
    attributes:
      label: "I confirm:"
      options:
        - label: "I am running the [extended version of Hugo version 0.91.0 or above](https://github.com/chipzoller/hugo-clarity/blob/master/README.md#prerequisites) installed."
          required: true
        - label: "I have read the [theme documentation](https://github.com/chipzoller/hugo-clarity/blob/master/README.md)."
          required: true
        - label: "I have used the [example site's config files](https://github.com/chipzoller/hugo-clarity/tree/master/exampleSite/config/_default) as reference."
          required: true
  - type: input
    id: v_hugo
    attributes:
      label: Hugo version
      description: 'Run `hugo version` and paste the output here.'
    validations:
      required: true
  - type: input
    id: os
    attributes:
      label: Operating system
      description: For example, iOS 14, Windows 10, macOS 12.5, Linux Ubuntu 22.04, Android 12, etc.
    validations:
      required: true
  - type: input
    id: browser
    attributes:
      label: Browser
      description: For example, Chrome 76, Safari 13, etc.
    validations:
      required: true
  - type: textarea
    id: current_behavior
    attributes:
      label: Current behavior
      description: 
        Describe how the bug shows up. You can also provide a link to a repo
        or a live website, or include screenshots.
    validations:
      required: true
  - type: textarea
    id: expected_behavior
    attributes:
      label: Expected behavior
      description: Describe what you expect the behavior to be without the bug.
    validations:
      required: true
  - type: textarea
    id: steps_to_reproduce
    attributes:
      label: Steps to reproduce
      description: Explain the steps required to duplicate the bug.
    validations:
      required: true
  - type: textarea
    id: logs
    attributes:
      label: Relevant log output
      description:
        If applicable, provide any errors, stacktraces or other output from Hugo.
      render: shell
  - type: textarea
    id: related_code
    attributes:
      label: Related code
      description:
        If you have already identified the file or lines in the existing code
        that may be relevant to this bug, providing them will help speed up
        our response.
  - type: textarea
    id: solution
    attributes:
      label: Preferred solution
      description:
        If you have a suggested technical solution to this bug, please describe
        it here.
  - type: textarea
    id: other_info
    attributes:
      label: Other information
      description: Any other information that might be relevant to this bug.
  - type: markdown
    attributes:
      value: |
        ---

        **Thank you!**