Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
Signed-off-by: Krishna Agarwal <dmkrishna.agarwal@gmail.com>
  • Loading branch information
MrKrishnaAgarwal authored Oct 2, 2023
2 parents 2b10ee2 + a6bd029 commit 6008951
Show file tree
Hide file tree
Showing 8 changed files with 366 additions and 149 deletions.
76 changes: 76 additions & 0 deletions .github/ PULL_REQUEST_TEMPLATE/pr_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Pull Request Template

## Description

**Summary:**

🚀 [Provide a brief summary of the changes or enhancements introduced by this PR.]

**Related Issue:**

🔗 [Link to the relevant issue(s) that this PR addresses. If no issue exists, briefly explain why this PR is necessary.]

## Type of Change

Please check the appropriate box and explain the change you've made:

- 🐛 Bug Fix
- [ ] This PR fixes an existing bug.
- [ ] The issue is identified as #[issue_number].

- ✨ New Feature
- [ ] This PR introduces a new feature.
- [ ] The feature is discussed and documented in #[link_to_discussion].

- 🚀 Enhancement/Improvement
- [ ] This PR makes improvements or enhancements to existing functionality.
- [ ] The enhancements are described in detail below.

- 📝 Documentation Update
- [ ] This PR updates the project's documentation.
- [ ] Documentation changes are explained below.

- ♻️ Code Refactoring
- [ ] This PR refactors existing code without changing its behavior.
- [ ] The reasons for refactoring are explained below.

## Screenshots or GIFs (if applicable)

[Insert screenshots or GIFs demonstrating the changes made in this PR, if relevant.]

<!-- Replace with your GIF URL -->
![GIF Placeholder](https://via.placeholder.com/300)

## Checklist

Before submitting this PR, please ensure the following:

- [ ] I have read and followed the project's contributing guidelines.
- [ ] I have tested the changes locally and they work as expected.
- [ ] I have provided proper documentation or comments for the code changes.
- [ ] I have included relevant test cases (if applicable).
- [ ] My code follows the project's coding standards.
- [ ] I have rebased my branch onto the latest main/development branch.
- [ ] I have resolved any merge conflicts.

## Additional Comments

[Provide any additional information, context, or details that are important for reviewers to know.]

## Reviewers

[Tag relevant team members or contributors who should review this PR.]

## Closing Notes

- [ ] This PR is ready for review.
- [ ] This PR is a work in progress and should not be merged yet.
- [ ] This PR is dependent on another PR, #[link_to_dependent_pr], which needs to be merged first.

## Related Issues or PRs

[Link to any related Issues or PRs if applicable. Eg: `#01`]

<br>

Also link dependent issues that will be closed when the PR is merged, Eg: Resolves `#01`
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ body:
Feel free to checkout my other cool [repositories](https://github.com/MrKrishnaAgarwal?tab=repositories) and [articles](https://dev.to/krishnaagarwal)
<br>
<img src= "https://octodex.github.com/images/supportcat.png" width="400">
44 changes: 44 additions & 0 deletions .github/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
updateDocsComment: >
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update some of our documentation based on your changes.
requestInfoReplyComment: >
We would appreciate it if you could provide us with more info about this issue/pr!
requestInfoLabelToAdd: request-more-info

newPRWelcomeComment: >
Thanks so much for opening your first PR here!
firstPRMergeComment: >
Congrats on merging your first pull request here! :tada: How awesome!
newIssueWelcomeComment: >
Thanks for opening this issue, a maintainer will get back to you shortly!
sentimentBotToxicityThreshold: .7

sentimentBotReplyComment: >
Please be sure to review the code of conduct and be respectful of other users. cc/ @MrKrishnaAgarwal
lockThreads:
toxicityThreshold: .7
numComments: 2
setTimeInHours: 72
replyComment: >
This thread is being locked due to exceeding the toxicity minimums. cc/ @MrKrishnaAgarwal
lockLabelToAdd: lock

blank_issues_enabled: false
contact_links:
- name: 📝 Website
url: https://mrkrishna.me
about: Visit my website to learn more about me!

- name: 📧 Email
url: mailto:dmkrishna.agarwal@gmail.com

- name: 🐦 Twitter
url: https://twitter.com/DMKrishnaA
about: Follow me on Twitter to get the latest updates!

- name: 📸 Dev.to
url: https://dev.to/krishnaagarwal
about: Follow me on Dev.to to see my latest posts!

- name: 😺 GitHub
url: https://github.com/MrKrishnaAgarwal
about: Follow me on GitHub to view my latest projects!
24 changes: 24 additions & 0 deletions .github/workflows/community.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
fork:
push:
branches: [main]
issues:
types: [opened]
issue_comment:
types: [created]
pull_request_target:
types: [opened]
pull_request_review_comment:
types: [created]

jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Hey @${{ github.actor }}, Thanks for contributing and Congrats on opening Issue :tada:"
pr-message: "Hey @${{ github.actor }}, Thanks for contributing and Congrats on opening PR :tada:."
footer: "We will try to review as soon as possible and a maintainer will get back to you soon!"
17 changes: 17 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint

on:
pull_request:
push:
branches: [main]
workflow_dispatch:

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0
- run: pre-commit install
- run: pre-commit run --all-files
18 changes: 18 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: yarn
init: yarn install
command: yarn run start
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 3000
onOpen: open-browser
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: true
addBadge: true
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ enforcement ladder](https://github.com/mozilla/diversity).

For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.
https://www.contributor-covenant.org/translations.
Loading

0 comments on commit 6008951

Please sign in to comment.