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

chore: add issue templates #20

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/01_feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 🚀 Feature Request
description: Submit a proposal/request for a new ds-template feature.
title: "feat: "
mhordynski marked this conversation as resolved.
Show resolved Hide resolved
labels: ["feature"]
body:
- type: markdown
attributes:
value: |
Thanks for contributing to ds-template!
- type: textarea
id: feature-description
attributes:
label: Feature description
description: A clear and concise description of the feature proposal
placeholder: Tell us what you want!
validations:
required: true
- type: textarea
id: feature-motivation
attributes:
label: Motivation
description: A clear and concise description of what the problem is, e.g., I'm always frustrated when [...]
placeholder: Why do you need this feature?
validations:
required: true
- type: textarea
id: feature-context
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
placeholder: Screenshots, code snippets, etc.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/02_bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 🐞 Bug Report
description: File a bug report
title: "bug: <short_name>"
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
mhordynski marked this conversation as resolved.
Show resolved Hide resolved
value: "A bug happened!"
validations:
required: true
- type: textarea
id : how-to-reproduce
attributes:
label: How can we reproduce it?
description: Please provide a code snippet to reproduce the bug.
placeholder: import dbally
mhordynski marked this conversation as resolved.
Show resolved Hide resolved
render: python
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
Loading