Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added workflows and config #24

Merged
merged 5 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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!
17 changes: 0 additions & 17 deletions .github/workflows /pre-commit.yml

This file was deleted.

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!"
File renamed without changes.
Loading