Skip to content

Commit

Permalink
Issue and pull request template added
Browse files Browse the repository at this point in the history
  • Loading branch information
andoriyaprashant committed Oct 1, 2023
1 parent 0140a86 commit 1b25090
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 🐛 Bug
description: Report an issue to help improve the project.
labels: ['bug']
body:
- type: textarea
id: description
attributes:
label: Description
description: A brief description of the question or issue, also include what you tried and what didn't work
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Please add screenshots if applicable
validations:
required: false
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 💡 General Feature Request
description: Have a new idea/feature? Please suggest!
title: 'Feature: '
labels: ['feature']
body:
- type: textarea
id: description
attributes:
label: Description
description: Description of the enhancement you propose, also include what you tried and what worked.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Screenshots if applicable
validations:
required: false
21 changes: 21 additions & 0 deletions .github/workflows/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
### Description
<!-- Provide a brief description of the changes in this pull request -->

### Proposed Changes
<!-- List the proposed changes introduced by this pull request -->

## Fixes #(issue_no)

Replace `issue_no` with the issue number which is fixed in this PR

## Screenshots

<!-- If applicable, add screenshots or images demonstrating the changes made -->

## Checklist

<!-- Mark the completed tasks with [x] -->
- [ ] Tests have been added or updated to cover the changes
- [ ] Documentation has been updated to reflect the changes
- [ ] Code follows the established coding style guidelines
- [ ] All tests are passing

0 comments on commit 1b25090

Please sign in to comment.