summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/enhancement.yml
blob: 98d5459234ad3cb8bde3ac2c8cc5b7681a5d51a2 (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
name: Enhancement Request
description: Request a new enhancement/feature
labels: [enhancement]

body:
- type: textarea
  id: description
  attributes:
    label: Description
    description: Short description of the enhancement/feature you are proposing.
  validations:
    required: true

- type: textarea
  id: use-case
  attributes:
    label: Use Case
    description: Why do you need this enhancement/feature?
  validations:
    required: true

- type: textarea
  id: solution
  attributes:
    label: Proposed Solution
    description: |
      (If known) How would you propose the enhancement/feature be implemented?
  validations:
    required: false

- type: input
  id: version
  attributes:
    label: tt-rss Version
    description: Which version (commit) of tt-rss are you currently using?
  validations:
    required: true

- type: textarea
  id: other
  attributes:
    label: Other Information
    description: |
      Anything else you want to provide (e.g. related issues, suggestions on how to implement, links for context, etc.).
  validations:
    required: false

- type: checkboxes
  id: acknowledgments
  attributes:
    label: Acknowledge
    description: Please mark any checkbox that apply (otherwise leave unchecked).
    options:
    - label: I'm interested in implementing the enhancement/feature
      required: false
    - label: This enhancement/feature might result in a breaking change
      required: false