Skip to content

feat: add issue templates #4

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

Merged
merged 1 commit into from
Mar 6, 2025
Merged
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
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Bug Report
description: Let us know about a bug
labels:
- bug
body:
- type: textarea
id: description
attributes:
label: What is the issue?
description: |
Describe the bug here. Please provide as much information as possible.
validations:
required: true

- type: textarea
id: expected
attributes:
label: What is the expected behavior?
description: |
Please describe the expected behavior here.
validations:
required: true

- type: textarea
id: repro
attributes:
label: How can we reproduce the bug?
description: |
Include repro steps and associated relevant information here.
validations:
required: true

- type: textarea
id: notes
attributes:
label: notes
description: |
Any additional information should be included here.
validations:
required: false
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Feature Request
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I used Kubernetes' issue templates as a reference, while trying to preserve our "what, why, how" format.

description: Suggest a new feature or enhancement
labels:
- enhancement
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I decided to simply use the default labels for now; we can consider creating and assigning custom ones in the future 👍

body:
- type: textarea
id: what
attributes:
label: What should this feature do?
description: |
Describe the feature or enhancement (what it should do, etc.) here.
validations:
required: true

- type: textarea
id: why
attributes:
label: Why is it needed?
description: |
Include information about why the feature should be implemented here.
validations:
required: true

- type: textarea
id: how
attributes:
label: How should it be implemented?
description: |
If known, any suggestions / ideas on how the feature could implemented.
validations:
required: false

- type: textarea
id: notes
attributes:
label: Notes
description: |
Any additional information should be included here.
validations:
required: false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ We ask that all contributors review and agree to adhere to our code of conduct p
## License

```
Copyright 2024 LY Corporation
Copyright 2024 - 2025 LY Corporation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down