Skip to content

Commit 09feb4b

Browse files
authored
Merge pull request #313 from razorpay/issue-template-v1
feat(template): added issues and features template
2 parents 653a278 + 848aa78 commit 09feb4b

File tree

2 files changed

+101
-0
lines changed

2 files changed

+101
-0
lines changed

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: feature.md
2+
description: Submit a proposal for a new feature
3+
title: '[Feature]: '
4+
labels: [':rocket: Feature Request']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
### Thank you for taking the time to suggest a new feature!
10+
We kindly ask that you search to see if an issue [already exists](https://github.com/razorpay/razorpay-node/issues?q=is%3Aissue+sort%3Acreated-desc+) for your feature.
11+
We are also happy to accept contributions from our users.
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: '🚀 Feature Proposal'
16+
description:
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: solution
21+
attributes:
22+
label: Suggested Solution
23+
description:
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: alternatives
28+
attributes:
29+
label: Alternatives
30+
description:
31+
validations:
32+
required: false
33+
- type: textarea
34+
id: extra
35+
attributes:
36+
label: Additional Information
37+
description:
38+
validations:
39+
required: true
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: issue.md
2+
description: Create a report to help us improve
3+
labels: ["issue"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this issue report!
9+
- type: textarea
10+
id: repro-steps
11+
attributes:
12+
label: Steps to reproduce the behavior
13+
description:
14+
placeholder: |
15+
1. Fetch a '...'
16+
2. Update the '....'
17+
3. See error
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: expected-behavior
22+
attributes:
23+
label: Expected behavior
24+
description: A clear and concise description of what you expected to happen.
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: actual-behavior
29+
attributes:
30+
label: Actual behavior
31+
description: A clear and concise description of what actually happen.
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: code-snippets
36+
attributes:
37+
label: Code snippets
38+
description: If applicable, add code snippets to help explain your problem.
39+
render: JavaScript
40+
validations:
41+
required: false
42+
- type: input
43+
id: language-version
44+
attributes:
45+
label: Node version
46+
placeholder: Node v16.14.2
47+
validations:
48+
required: true
49+
- type: input
50+
id: lib-version
51+
attributes:
52+
label: Library version
53+
placeholder: razorpay-node v2.8.4
54+
validations:
55+
required: true
56+
- type: textarea
57+
id: additional-context
58+
attributes:
59+
label: Additional Information
60+
description: Add any other information about the problem here.
61+
validations:
62+
required: false

0 commit comments

Comments
 (0)