From a0dcc3ee77ab2abfb54e75f71129be7bb07c66ed Mon Sep 17 00:00:00 2001 From: Hasnain Makada <82728823+hasnainmakada-99@users.noreply.github.com> Date: Mon, 10 Oct 2022 11:28:56 +0530 Subject: [PATCH] Added greetings.yaml and also added the pull request template --- .github/pull_request_template.md | 36 ++++++++++++++++++++++++++++++++ .github/workflows/greetings.yml | 19 +++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/greetings.yml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..c8e1ec4 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,36 @@ +# Pull Request Template + +## Fixes Issue # + + + + + +## Changes proposed + + + + + + +## Check List (Check all the applicable boxes) + +- [ ] My code follows the code style of this project. +- [ ] My change requires changes to the documentation. +- [ ] I have updated the documentation accordingly. +- [ ] All new and existing tests passed. +- [ ] This PR does not contain plagiarized content. +- [ ] The title of my pull request is a short description of the requested changes. + +## Screenshots + + + +## Note to reviewers + + \ No newline at end of file diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..b463ae9 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,19 @@ +on: + fork: + push: + branches: [main] + issues: + types: [opened] + pull_request_target: + types: [opened] + +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 contributor, Thanks for raising this issue. One of our maintainers of this project will soo reach out you, Till then Happy Coding :smiley:" + pr-message: "

Thanks for raising this PR, one of our maintainers will soon reach out to you, Till then Happy coding :smiley:"