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

Add issue templates #121

Merged
merged 2 commits into from
Jan 28, 2022
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
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

<!--
Hi there! Thank you for discovering and submitting an issue!

-->

<!--- Provide a general summary of the issue in the Title above -->

## Expected Behavior
<!--- Tell us what should happen -->

## Current Behavior
<!--- Tell us what happens instead of the expected behavior -->

## Steps to Reproduce
<!-- Provide a detailed set of steps to reproduce the bug. -->
1.
2.
3.
4.

## Context (Environment)

### Browser
<!-- Mozilla FireFox, Chrome, Edge, etc. -->

### Container Operating System
<!-- Linux containers, Windows containers -->

#### Docker
<!-- Run `docker version` -->

## Logs
<!-- Please share as many logs as possible. This will help to debug -->
<!-- If logs are long, considering putting them in a [gist](https://gist.github.com/) and adding the link here. This helps keep this issue report smaller. -->
<!-- Don't forget to remove any connection string information! -->

## Additional Information
<!-- Please provide any additional information that may be helpful in understanding the issue. -->
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea or improvement for this project
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Task
about: Tasks are small units of work that can be completed within one day of work
title: "[Task]"
labels: 'task'
assignees: ''
---
<!-- add a reference to the story so you can help github track it -->
Story: #XX

**Description**
A clear and concise description of what the this task is about.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/user_story.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: User story
about: User story with acceptance criteria
title: "[Story]"
labels: 'story'
assignees: ''
---

## Description

<!-- provide a description -->

## Acceptance criteria

<!--

Use a list of clear and concise acceptance criteria
By using the list syntax ("[ ]"), github can track and visualize progress on the story.

-->

- [ ] Criteria 1
- [ ] Criteria 2
- [ ] Criteria 3
- [ ] ...