Skip to content

Commit

Permalink
Add simple issue templates (Lightning-AI#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt authored Jun 18, 2024
1 parent 33aae43 commit d3087a2
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/ask-a-question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Ask a Question
about: Ask and answer questions related to LitGPT
title: ''
labels: question

---

Please describe your question here.
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Bug Report
description: Report errors related to LitGPT
title: "Description"
labels: bug
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to report an issue. Please fill out the details below to help us resolve it.
- type: textarea
id: bug_description
attributes:
label: Bug description
description: A description of the issue.
placeholder: |
Please provide a description of what the bug or issue is.
validations:
required: true

- type: dropdown
id: operating_system
attributes:
label: What operating system are you using?
description: If applicable, please select the operating system where you experienced this issue.
options:
- "Unknown"
- "macOS"
- "Linux"
- "Windows"
validations:
required: true

- type: textarea
id: version
attributes:
label: LitGPT Version
description: |
Please provide details about your LitGPT version by running the following code in your terminal:
```
pip show litgpt | grep Version:
```
You can simply copy and paste the outputs below.
value: |
```
```
validations:
required: false
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Suggest a Feature
about: Propose a new feature or enhancement
title: ''
labels: enhancement

---

Please describe the feature or enhancement along with the intended usecase.

0 comments on commit d3087a2

Please sign in to comment.