From ac7128ac56fdbe8aa261121c29c72fce0386c1e3 Mon Sep 17 00:00:00 2001 From: Porter <60114461+Cameron-Porter@users.noreply.github.com> Date: Sat, 25 Jun 2022 18:35:32 -0400 Subject: [PATCH] feat(Action): Added new action to welcome new contributors to the group (#408) --- .github/workflows/WelcomeNewContributor.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/WelcomeNewContributor.yml diff --git a/.github/workflows/WelcomeNewContributor.yml b/.github/workflows/WelcomeNewContributor.yml new file mode 100644 index 000000000..3a3658913 --- /dev/null +++ b/.github/workflows/WelcomeNewContributor.yml @@ -0,0 +1,20 @@ +# This workflow will send messages + +name: 'Welcome New Contributors' + +on: + issues: + types: [opened] + pull_request_target: + types: [opened] + +jobs: + welcome-new-contributor: + runs-on: ubuntu-latest + steps: + - name: 'Greet the contributor' + uses: garg3133/welcome-new-contributors@v1.2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Hey @contributor_name, thanks for opening your first issue. We welcome you to the community and appreciate your dedication to enhance our application!' + pr-message: 'Hey @contributor_name, thanks for opening your first Pull Request. This is an exciting time to contriubte to our open source appliucation. Keep up the great work! Someone will review it soon.'