Skip to content

Commit 9e9c7cf

Browse files
committed
Template for requesting new libraries
1 parent 55a2cd5 commit 9e9c7cf

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: "🚀 Request Support for a New Library"
2+
description: Submit a request to add support for a third-party library
3+
title: "Request support for {maven_coordinates}"
4+
labels:
5+
- library-new-request
6+
assignees:
7+
- kimeta
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Please fill out the following details to help us evaluate and prioritize your request.
13+
14+
- type: input
15+
id: maven_coordinates
16+
attributes:
17+
label: Full Maven coordinates
18+
description: Include a version that you need. The system might support older versions so more people can benefit.
19+
placeholder: groupId:artifactId:version
20+
validations:
21+
required: true
22+
23+
- type: input
24+
id: source_code_link
25+
attributes:
26+
label: Library source code URL
27+
description: Link to the upstream source repository (e.g., GitHub).
28+
placeholder: https://github.com/org/repo
29+
validations:
30+
required: true
31+
32+
- type: input
33+
id: test_suite_link
34+
attributes:
35+
label: Link to the existing test suite
36+
description: Provide a link to the library's test suite (enter N/A if it does not exist).
37+
placeholder: URL or N/A
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: reason
43+
attributes:
44+
label: Reason for requesting the library
45+
description: Explain your use case and why support for this library is important.
46+
placeholder: Briefly describe your motivation and expected benefits.
47+
validations:
48+
required: true

0 commit comments

Comments
 (0)