-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
4,647 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
about: Report a bug to help us improve CabRental | ||
title: "[BUG]" | ||
labels: bug | ||
assignees: '' | ||
--- | ||
|
||
**Describe the bug** | ||
> A clear and concise description of what the bug is. | ||
**To Reproduce** | ||
``` | ||
Explain bug encounter! | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '...' | ||
4. See error | ||
``` | ||
|
||
**Expected behavior** | ||
> A clear and concise description of what you expected to happen. | ||
**Screenshots** | ||
> If applicable, add screenshots to help explain your problem. | ||
**Additional context** | ||
> Add any other context about the problem here. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: 📝 Documentation Update | ||
about: Suggest improvements or additions to the documentation | ||
title: "[DOCS]" | ||
labels: documentation | ||
assignees: '' | ||
--- | ||
|
||
**Describe the documentation update** | ||
> A clear and concise description of the documentation that needs to be updated or added. | ||
**Why is this needed?** | ||
> Explain why this documentation update is important. | ||
**Additional context** | ||
> Add any other context or screenshots about the documentation update here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: 💡 Feature Request | ||
about: Suggest an idea for CabRental | ||
title: "[FEATURE]" | ||
labels: enhancement | ||
assignees: '' | ||
--- | ||
|
||
**Please describe your feature request related to a problem?** | ||
> A one liner title for feature | ||
**Describe your solution to problem** | ||
> 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. | ||
**Add Relevant Screenshot (if available)** | ||
> add here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: 📚 General Issue | ||
about: Discuss general topics, questions, or suggestions | ||
title: "[GENERAL]" | ||
labels: question | ||
assignees: '' | ||
--- | ||
|
||
**Topic** | ||
> A clear and concise description of the topic or question. | ||
**Details** | ||
> Provide more details or context about your topic or question. | ||
**Additional context** | ||
> Add any other context or screenshots if necessary. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 🚀 Pull Request | ||
|
||
## Description | ||
|
||
Please include a summary of the changes and the related issue. Provide relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
Fixes # (issue) | ||
|
||
## Type of Change | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Documentation Update | ||
|
||
## Checklist: | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my changes | ||
- [ ] Any dependent changes have been merged and published in downstream modules | ||
|
||
## Screenshot of final output/video |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# .github/labeler.yml | ||
bug: | ||
- "**bug**" | ||
- "**fix**" | ||
- "**error**" | ||
- "**issue**" | ||
|
||
enhancement: | ||
- "**feature**" | ||
- "**enhancement**" | ||
- "**add**" | ||
- "**improve**" | ||
|
||
documentation: | ||
- "**docs**" | ||
- "**documentation**" | ||
- "**readme**" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Greetings | ||
|
||
on: [pull_request_target, issues] | ||
|
||
jobs: | ||
greeting: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: "👋 Thank you for raising an issue! We appreciate your effort in helping us improve. Our team will review it shortly. Stay tuned!" | ||
pr-message: " 🎉 Thank you for your contribution! Your pull request has been submitted successfully. A maintainer will review it as soon as possible. We appreciate your support in making this project better" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# .github/workflows/labeler.yml | ||
name: "Labeler" | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, reopened] | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml |
Oops, something went wrong.