Skip to content

Commit

Permalink
Merge pull request #29 from praptisharma28/PR
Browse files Browse the repository at this point in the history
fix: PR and Issue templates added
  • Loading branch information
shelcia authored Feb 11, 2024
2 parents b1d8896 + 147ce9d commit 067e7a3
Show file tree
Hide file tree
Showing 4 changed files with 209 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Bug Report 🐛
description: Report a bug
labels: ["bug", "IWOC2024"]
body:
- type: markdown
attributes:
value: |
**Bug Report 🐛**
Please fill out the sections below to help everyone identify and fix the bug.
- type: textarea
id: description
attributes:
label: Describe your issue
placeholder: Provide a clear and concise description of the bug.
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to reproduce
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true

- type: textarea
id: expected
attributes:
label: What was the expected result?
placeholder: Provide a clear and concise description of what you expected to happen.

- type: textarea
id: screenshots
attributes:
label: Put here any screenshots or videos (optional)

- type: textarea
id: contact
attributes:
label: How can we contact you (optional)
placeholder: Leave your Discord or social media handle for clarifications or updates.
validations:
required: false

- type: dropdown
id: assign
attributes:
label: "Would you like to work on this issue?"
options:
- "Yes"
- "No"

- type: checkboxes
id: terms
attributes:
label: "By submitting this issue, I have confirmed that:"
options:
- label: I have starred the repo ⭐
required: true

- type: markdown
attributes:
value: |
**Thank you for reporting this issue!**
Your contribution is crucial, and we will investigate the bug as soon as possible. We appreciate your effort in improving the project.
57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/design_change.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: UI/UX Design Improvement 🎨🖌️
description: Use this template to request a new feature or improvement to the UI/UX of the project.
labels: ["enhancement", "Figma", "UI", "Hard", "IWOC2024"]
body:
- type: markdown
attributes:
value: |
**UI/UX Design Improvement Request**
Please fill out the sections below to help everyone identify the new design or feature you are requesting.
- type: textarea
id: description
attributes:
label: What is the problem you are trying to solve?
placeholder: Provide a clear and concise description of the idea or feature you are suggesting.
validations:
required: true

- type: textarea
id: contact
attributes:
label: How can we contact you (optional)
placeholder: Leave your Discord or social media handle for follow-up or collaboration.
validations:
required: false

- type: dropdown
id: assign
attributes:
label: "Would you like to work on this issue?"
options:
- "Yes, I'd like to contribute."
- "No, I'm suggesting this for others to implement."

- type: textarea
id: additional_info
attributes:
label: Additional Information
placeholder: Provide any extra details or context that might be helpful.
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: "By submitting this issue, I confirm that:"
options:
- label: "I have starred the repo ⭐"
required: true

- type: markdown
attributes:
value: |
**Thank you for reporting this issue!**
Your contribution is valuable, and we will review your suggestion promptly. We appreciate your dedication to improving the project.
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Feature Request 🚀
description: Suggest a new feature or improvement
labels: ["enhancement","hard","IWOC2024"]
body:
- type: markdown
attributes:
value: |
Please fill out the sections below to help everyone identify the new feature or improvement
- type: textarea
id: description
attributes:
label: Describe your improvement idea or feature request
placeholder: A clear and concise description of what the idea or feature is.
validations:
required: true
- type: textarea
id: steps
attributes:
label: How would you like to see it implemented?
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See improvement
validations:
required: true


- type: textarea
id: contact
attributes:
label: How can we contact you (optional)
placeholder: |
Leave your discord or social media handle
validations:
required: false
- type: dropdown
id: assign
attributes:
label: "Would you like to work on this issue?"
options:
- "Yes"
- "No"
- type: checkboxes
id: terms
attributes:
label: "By submitting this issue, I have confirmed that:"
options:
- label: I have starred the repo ⭐
required: true

- type: markdown
attributes:
value: |
Thanks for reporting this issue! We will get back to you as soon as possible.
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Fixes Issue🛠️

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

Closes #

# Description👨‍💻

<!--Please include a summary of the change and which issue is fixed.List any dependencies that are required for this change.-->

# Type of change📄

<!--Please delete options that are not relevant.-->

- [] Bug fix (non-breaking change which fixes an issue)
- [] New feature (non-breaking change which adds functionality)

# Checklist✅

- [] My code follows the style guidelines of this project
- [] I have performed a self-review of my own code
- [] I have added demonstration in the form of GIF/video file
- [] I am an Open Source Contributor

# Screenshots/GIF📷

0 comments on commit 067e7a3

Please sign in to comment.