-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3383 from arunans23/template
Add templates for task and new feature
- Loading branch information
Showing
2 changed files
with
95 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,51 @@ | ||
name: New Feature Request | ||
description: File a new feature request | ||
title: "[New Feature]: " | ||
labels: ["Type/New Feature"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this new feature request! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Give a brief description of the feature | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Describe your problem(s) | ||
description: Detailed description on the problem. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: solution-description | ||
attributes: | ||
label: Describe your solution(s) | ||
description: Detailed description on the solution | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: related-issues | ||
attributes: | ||
label: Related issue(s) (optional) | ||
description: Any related issues such as sub tasks and issues reported in other repositories (e.g., component repositories), similar problems, etc. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: suggested-labels | ||
attributes: | ||
label: Suggested label(s) (optional) | ||
description: Optional comma-separated list of suggested labels. Non committers can’t assign labels to issues, and thereby, this will help issue creators who are not a committer to suggest possible labels. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: suggested-assignees | ||
attributes: | ||
label: Suggested assignee(s) (optional) | ||
description: Optional comma-separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, and thereby, this will help issue creators who are not a committer to suggest possible assignees. | ||
validations: | ||
required: false |
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,44 @@ | ||
name: Task Request | ||
description: File a task request | ||
title: "[Task]: " | ||
labels: ["Type/Task"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this task form! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Give a brief description of the task | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: task-description | ||
attributes: | ||
label: Describe your task(s) | ||
description: Detailed description on the task. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: related-issues | ||
attributes: | ||
label: Related issue(s) (optional) | ||
description: Any related issues such as sub tasks and issues reported in other repositories (e.g., component repositories), similar problems, etc. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: suggested-labels | ||
attributes: | ||
label: Suggested label(s) (optional) | ||
description: Optional comma-separated list of suggested labels. Non committers can’t assign labels to issues, and thereby, this will help issue creators who are not a committer to suggest possible labels. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: suggested-assignees | ||
attributes: | ||
label: Suggested assignee(s) (optional) | ||
description: Optional comma-separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, and thereby, this will help issue creators who are not a committer to suggest possible assignees. | ||
validations: | ||
required: false |