Skip to content

Commit

Permalink
ci: add issue templates #15
Browse files Browse the repository at this point in the history
  • Loading branch information
harryle95 committed May 12, 2024
1 parent 2df04e1 commit 77b7504
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Description

-

<!--
Please add in issue numbers this pull request will close, if applicable
Examples: Fixes #4321 or Closes #1234
Ensure you are using a supported keyword to properly link an issue:
https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword
-->
## Closes
40 changes: 40 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behaviour:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Error code**
Show the code section on how the bug was encountered and stack traces
```Python
```

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
11 changes: 11 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/ci_testing_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: CI/Testing Request
about: Add a new CI task/testing steps
title: "[CI/Testing]"
labels: testing, ci
assignees: ''

---

**Summary**
Describe the new feature you want to be added
1 change: 1 addition & 0 deletions .github/workflows/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
12 changes: 12 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/documentation_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Documentation request
about: Requests for documentation
title: "[DOCUMENTATION]"
labels: documentation
assignees: ''

---

**Summary**
Describe the concept/code that requires further clarity and documentation

14 changes: 14 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[ENHANCEMENT]"
labels: enhancement
assignees: ''

---

**Summary**
Describe the new feature you want to be added

**Example**
Provide an example or use-case of the requested feature
14 changes: 14 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/uiux_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: UI/UX
about: Suggest an idea for page layout and interactivity
title: "[UI/UX]"
labels: ui/ux
assignees: ''

---

**Summary**
Describe changes for the current UI/UX that you want to see.

**Screenshots**
If applicable, add screenshots to help explain your request.

0 comments on commit 77b7504

Please sign in to comment.