-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add discussion template for template requests
- Loading branch information
1 parent
c39af89
commit 7f23ce5
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
title: '[template]: ' | ||
labels: ['Template Request'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Thank you for suggesting a new template for create-tgen! Before submitting, please ensure that a similar template hasn't already been requested or created. | ||
- type: input | ||
id: template-name | ||
attributes: | ||
label: Template Name | ||
description: Provide a concise name for the proposed template. | ||
placeholder: 'e.g., Next.js with TypeScript and Tailwind CSS' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: template-description | ||
attributes: | ||
label: Template Description | ||
description: Describe the purpose and features of the template. What problem does it solve? What technologies or configurations does it include? | ||
placeholder: 'A Next.js starter template configured with TypeScript, Tailwind CSS, and ESLint for rapid development.' | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: template-repository | ||
attributes: | ||
label: Template Repository (if applicable) | ||
description: If there's an existing repository that serves as a reference or starting point for this template, please provide the URL. | ||
placeholder: 'e.g., https://github.com/user/repo' | ||
validations: | ||
required: false |