From 1e101a8b2c9c77bbc0e7ad4f0326a44e1175a404 Mon Sep 17 00:00:00 2001 From: harmeetsingh11 Date: Fri, 12 Jan 2024 16:43:40 +0530 Subject: [PATCH] feat: add greetings workflow for contributors --- .github/workflows/greetings.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..c8b6f05f1 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,18 @@ +name: 'Greetings' + +on: + 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: 'Congratulations, @${{ github.actor }}! 🎉 Thank you for creating your issue for Virtuo-Learn. Your contribution is greatly appreciated and we look forward to working with you to resolve the issue. Keep up the great work! Should you have any queries or require guidance, do not hesitate to ask.' + pr-message: 'Great job, @${{ github.actor }}! 🎉 Thank you for submitting your pull request for Virtuo-Learn. Our dedicated team will review it diligently.Your contribution is valuable and we appreciate your efforts to improve our project.'