Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

define issue templates for each Issue Type #10914

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
name: Bug report
about: Create a report to help us improve
title: ''
# legacy classification using labels
labels: 'bug'
# new native Issue Type https://github.com/orgs/community/discussions/148715
type: 'bug'
assignees: ''

---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
---
name: Work Item
about: A unit of work that (maybe) needs to be done
name: Feature
about: A request, idea, or new functionality
title: ''
# legacy classification using labels
labels: 'enhancement'
# new native Issue Type https://github.com/orgs/community/discussions/148715
type: 'feature'
assignees: ''

---
Expand Down
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/task.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need to give some guidelines as to what constitutes a task. The worry is that we'd end up with standalone tasks (not sub-tasks) that end up having significant impact on chain behavior, or non-trivial upgrade considerations.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Task
about: A specific piece of work
title: ''
# new native Issue Type https://github.com/orgs/community/discussions/148715
type: 'task'
assignees: ''

---

# What

## Why

## How
Loading