-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Krishna Agarwal <dmkrishna.agarwal@gmail.com>
- Loading branch information
Showing
8 changed files
with
366 additions
and
149 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,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` |
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
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,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! |
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,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!" |
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 @@ | ||
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 |
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,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 |
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
Oops, something went wrong.