Skip to content

Commit

Permalink
Add issue templates (#121)
Browse files Browse the repository at this point in the history
Co-authored-by: Audrey SERRA <[email protected]>
  • Loading branch information
kbeaugrand and audserraCGI authored Jan 28, 2022
1 parent 80c6c28 commit 7f9921f
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 0 deletions.
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
- [ ] ...

0 comments on commit 7f9921f

Please sign in to comment.