-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Create Use Case issue template (#324)
* initial draft * new line issue * update link * address comment * add numbers
- Loading branch information
Showing
1 changed file
with
45 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,45 @@ | ||
name: Use Case | ||
description: Describe a new use case for OpenAdapt | ||
title: "Use Case: " | ||
labels: usecase | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to add a new use case! Default text extracted from https://github.com/MLDSAI/OpenAdapt/issues/72#issuecomment-1601991759. | ||
- type: input | ||
id: role | ||
attributes: | ||
label: Role | ||
description: Who is this use case about? | ||
placeholder: Travel Agent | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: task | ||
attributes: | ||
label: Task | ||
description: What is this use case about? | ||
placeholder: Book a flight | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Context | ||
description: What background information is there? | ||
placeholder: There are 4 people traveling to Barcelona, 2 of which require first class tickets | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: workflow | ||
attributes: | ||
label: Workflow | ||
description: How is the task accomplished? Please place each step on a new line. | ||
placeholder: | | ||
1. Open Chrome | ||
2. Navigate to Google Flights | ||
3. Set the departure city | ||
4. ... | ||
validations: | ||
required: true |