aboutsummaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/feature-request.yml
blob: edae822e75a90074c7de66bda61d43f8dfee0b30 (plain) (blame)
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: 🚀 New feature proposal
description: Propose a new feature/enhancement or tool idea for IT-Tools
labels: ['enhancement', 'triage']

body:
  - type: markdown
    attributes:
      value: |
        Thanks for your interest in the project and taking the time to fill out this feature report!

  - type: dropdown
    id: request-type
    attributes:
      label: What type of request is this?
      options:
        - New tool idea
        - New feature for an existing tool
        - Deployment or CI/CD improvement
        - Self-hosting improvement
        - Other
    validations:
      required: true

  - type: textarea
    id: feature-description
    attributes:
      label: Clear and concise description of the feature you are proposing
      description: A clear and concise description of what the feature is.
      placeholder: 'Example: a token generator tool'
    validations:
      required: true

  - type: textarea
    id: alternative
    attributes:
      label: Is their example of this tool in the wild?
      description: Provide link to already existing tool (like websites, apps, cli, ...) or npm packages that could be used or provide inspiration for the feature.

  - type: textarea
    id: additional-context
    attributes:
      label: Additional context
      description: Any other context or screenshots about the feature request here.

  - type: checkboxes
    id: checkboxes
    attributes:
      label: Validations
      description: Before submitting the issue, please make sure you do the following
      options:
        - label: Check the feature is not already implemented in the project.
          required: true
        - label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
          required: true
        - label: Check that the feature can be implemented in a client side only app (IT-Tools is client side only, no server).
          required: true