Skip to content

Commit

Permalink
Remove titles from new issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
janette committed Nov 1, 2024
1 parent 1ab6805 commit 959dd9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .github/ISSUE_TEMPLATE/task.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
name: Task
description: A workitem that needs to be done while developing a story, feature, addressing tech debt, documentation, etc.
title: ""
labels: [task]

body:
- type: textarea
attributes:
label: Description
description: A concise description of the task or suggested implementation.
validations:
required: true
render: markdown
- type: textarea
attributes:
label: Acceptance Criteria
description: Tell us what should happen, how will we know when we're done.
validations:
required: true
render: markdown

5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/user_story.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: User Story
description: User stories are short descriptions of a feature told from the perspective of the person who desires the new functionality, usually a user of the system.
title: ""
labels: [user story]

body:
- type: textarea
attributes:
label: Why
label: User Story
description: As a [user], I want [goal] so that [some reason].
render: markdown
validations:
required: true
- type: textarea
attributes:
label: Acceptance Criteria
description: Set up the scenario. Given [x] When [y] Then [z].
render: markdown
validations:
required: true

0 comments on commit 959dd9a

Please sign in to comment.