Skip to content

Commit 7778b86

Browse files
JnyJnyclaude
andcommitted
feat: add new device support request issue template
Add GitHub issue template for requesting support for new busylight devices. Template includes: - Device name (required) - name or model of the device - Manufacturer (required) - who makes the device - Purchase URL (optional) - where to buy the device - Documentation links (optional) - technical specs and manuals - Additional information (optional) - connection type, features, etc. This provides a structured way for users to request support for new devices and ensures developers get the information needed to evaluate and implement support. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 25a6573 commit 7778b86

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: New device support request
2+
description: Request support for a new busylight device
3+
labels: ["enhancement", "new-device"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
**Request support for a new busylight device.**
9+
10+
Please provide as much information as possible about the device to help us evaluate and implement support.
11+
12+
- type: input
13+
attributes:
14+
label: Device name
15+
description: What is the name or model of the device?
16+
placeholder: e.g., Blink(1) mk3, Blynclight Plus, Status Indicator Pro
17+
validations:
18+
required: true
19+
20+
- type: input
21+
attributes:
22+
label: Manufacturer
23+
description: Who makes this device?
24+
placeholder: e.g., ThingM, Embrava, Plantronics, Luxafor
25+
validations:
26+
required: true
27+
28+
- type: input
29+
attributes:
30+
label: Purchase URL
31+
description: Where can this device be purchased? (optional)
32+
placeholder: e.g., https://blink1.thingm.com/, https://embrava.com/products/blynclight
33+
validations:
34+
required: false
35+
36+
- type: textarea
37+
attributes:
38+
label: Documentation links
39+
description: Links to any public documentation, datasheets, or technical specifications for the device (optional)
40+
placeholder: |
41+
e.g.,
42+
- Product manual: https://example.com/manual.pdf
43+
- API documentation: https://example.com/api-docs
44+
- Developer resources: https://example.com/developers
45+
validations:
46+
required: false
47+
48+
- type: textarea
49+
attributes:
50+
label: Additional information
51+
description: Any other relevant information about the device that might help with implementation
52+
placeholder: |
53+
e.g.,
54+
- Connection type (USB HID, Bluetooth, etc.)
55+
- Supported colors/effects
56+
- Special features
57+
- Similar devices already supported
58+
validations:
59+
required: false

0 commit comments

Comments
 (0)