Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Anupkjha2601 authored Jun 11, 2024
2 parents 8645387 + 9714fce commit c51c1b7
Showing 104 changed files with 18,969 additions and 6,763 deletions.
Binary file modified .DS_Store
Binary file not shown.
53 changes: 53 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: ​🐞 Bug
description: Report an issue to help us improve the project.
title: "[BUG] <write a small description here>"
labels: ["bug", "goal: fix"]
body:
- 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
- type: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist"
options:
- label: "I have checked the existing issues"
required: true

- label: "I have read the [Contributing Guidelines](https://github.com/Anupkjha2601/food-recipes-website/blob/main/contributing.md)"
required: true

- label: "I am willing to work on this issue (optional)"
required: false

- label: "I am a GSSoC'23 contributor"
required: false

33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 📄 Documentation issue
description: Found an issue in the documentation? You can use this one!
title: "[Docs]:"
labels: ["documentation"]
body:
- type: textarea
id: description
attributes:
label: Current State
validations:
required: true
- type: textarea
id: extra-info
attributes:
label: Desired State
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: Please add screenshots if applicable
validations:
required: false
- type: checkboxes
id: terms
attributes:
label: 'Record'
options:
- label: I agree to follow this project's Code of Conduct
required: true
- label: I'm a GSSoC'23 contributor
- label: I want to work on this issue
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Feature Request 💡
description: Have any new idea or new feature for food-recipes-website? Please suggest!
title: "[Feature] <write a small description here>"
labels: ["enhancement", "goal: addition"]
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: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist"
options:
- label: "I have checked the existing issues"
required: true

- label: "I have read the [Contributing Guidelines](https://github.com/Anupkjha2601/food-recipes-website/blob/main/contributing.md)"
required: true

- label: "I am willing to work on this issue (optional)"
required: false

- label: "I am a GSSoC'23 contributor"
required: false
File renamed without changes.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/refactor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Refactor Code 🔧
description: Use this label for code refactoring tasks.
title: '[Refactor] <write what you want to add>'
labels: ['goal: refactor']
body:
- type: input
attributes:
label: File Name
description: 'Enter the file that you want to refactor in the codebase.'
placeholder: 'For example - component/Cards/Card.tsx'
validations:
required: true
- type: textarea
id: refactor_description
attributes:
label: 'Reason for Refactoring the Code'
description: 'Describe what improvements can be made in the codebase without introducing breaking changes.'
validations:
required: true
- type: checkboxes
id: no-duplicate-issues
attributes:
label: 'Checklist'
options:
- label: 'I have checked the existing [issues](https://github.com/Anupkjha2601/food-recipes-website/issues).'
required: true

- label: 'I have read the [Contributing Guidelines](https://github.com/Anupkjha2601/food-recipes-website/blob/main/contributing.md).'
required: true

- label: "The changes don't break the code and don't introduce new functionality."
required: true

- label: 'I am willing to work on this issue (optional).'
required: false

- label: 'I am a GSSoC23 contributor.'
required: false
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# @format

version: 2
updates:
# Update GitHub Actions
- package-ecosystem: "github-actions"
labels:
- 📦 dependencies
directory: "/" # refers to the location of package.json
commit-message:
prefix: "chore(deps)"
schedule:
interval: "daily"
19 changes: 19 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!-- 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 -->

## 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 -->
53 changes: 0 additions & 53 deletions .github/workflows/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/ISSUE_TEMPLATE/update-request.md

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/auto-comment-newly-opened-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto Comment On New PR's

on:
pull_request_target:
types: [opened]

jobs:
comment_on_new_pr:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: "Thank you @${{ github.actor }}! 🙌🏻 \n\nFor creating this pull request and contributing to Food Recipes Website! 💗\n\nThe maintainers will review this Pull Request and provide feedback as soon as possible! 😇\n\nWe appreciate your patience and contribution. You're making a significant impact! 🚀"
17 changes: 17 additions & 0 deletions .github/workflows/auto-comment-on-new-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Auto Comment on New Issues

on:
issues:
types:
- opened

jobs:
comment_on_new_issue:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Thanks for creating this issue, @${{ github.actor }}! \n\n🚀 We really appreciate your contribution. Before we proceed, please make sure to read our [Contributing Guidelines](https://github.com/Anupkjha2601/food-recipes-website/blob/main/contributing.md) to understand the project's requirements and best practices. \n\n🕵️‍♂️ Once you've reviewed the guidelines, please wait until one of our team members reviews the issue and provides further feedback. \n\n🙏 Thanks again for your help, and we look forward to your valuable contributions! Happy coding! 😄"
Loading

0 comments on commit c51c1b7

Please sign in to comment.