Skip to content

Commit

Permalink
Merge branch 'main' into icon-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwajeet594 authored Oct 5, 2024
2 parents 6989383 + 7ce9cd5 commit fb24c6e
Show file tree
Hide file tree
Showing 43 changed files with 4,647 additions and 134 deletions.
Binary file added .DS_Store
Binary file not shown.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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.

16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation_update.md
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.
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/general_issue.md
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.
27 changes: 27 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
17 changes: 17 additions & 0 deletions .github/labeler.yml
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**"
16 changes: 16 additions & 0 deletions .github/workflows/greetings.yml
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"
15 changes: 15 additions & 0 deletions .github/workflows/labeler.yml
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
Loading

0 comments on commit fb24c6e

Please sign in to comment.