Skip to content

Commit

Permalink
feat(templates): added issue and pr templates (#37)
Browse files Browse the repository at this point in the history
* feat(templates): added issue and pr templates
  • Loading branch information
Aadarsh805 committed Jan 23, 2023
1 parent 4c9d7b7 commit a902987
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: ​🐞 Bug
description: Report an issue to help us improve the project.
title: 'Bug: <Title>'
labels: ['bug/report']
body:
- type: checkboxes
attributes:
label: Is there any existing issue for this?
description: Please search to see if an issue already exist for the bug you have encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Description
id: description
description: A brief description of the issue or bug you are facing, also include what you tried and what didn't work.
validations:
required: false
- type: textarea
attributes:
label: Screenshots
id: screenshots
description: Please add screenshots if applicable
validations:
required: false
- type: textarea
attributes:
label: Any additional information?
id: extrainfo
description: Any additional information or Is there anything we should know about this bug?
validations:
required: false
- type: dropdown
id: browsers
attributes:
label: What browser are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Feature Request 💡
description: Have any new idea or new feature for GitOpener? Please suggest!
title: 'Feat: <Title>'
labels: ['feat/request']
body:
- type: textarea
id: description
attributes:
label: Description
description: A clear and concise description of any alternative solution or features you've considered.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Please add screenshots if applicable
validations:
required: false
- type: textarea
id: extrainfo
attributes:
label: Additional Information
description: Add any other context or anything else about this idea
validations:
required: false
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/other.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Other
description: Use this for any other question or issue. Please do not create blank issues
title: '[OTHER]'
body:
- type: textarea
id: issuedescription
attributes:
label: What would you like to share or ask?
description: Provide a clear and concise explanation of your issue.
validations:
required: true
- type: textarea
id: extrainfo
attributes:
label: Additional information
description: Is there anything else you want to add ?
validations:
required: false
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!-- If your PR fixes an open issue, use `Closes #999` to link your PR with the issue. #999 stands for the issue number you are fixing -->


## Fixes Issue

<!-- Remove this section if not applicable -->

<!-- Example: Closes #31 -->
Closes #<issue_number>


## Changes proposed

<!-- List all the proposed changes in your PR -->

## Screenshots

<!-- Add all the screenshots which support your changes -->

## Note to reviewers

<!-- Add notes to reviewers if applicable -->

1 comment on commit a902987

@vercel
Copy link

@vercel vercel bot commented on a902987 Jan 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.