From f2b3d29b1b24c0efecc7cd32c3888a67b128e266 Mon Sep 17 00:00:00 2001 From: Michael Cade Date: Thu, 5 Jan 2023 17:35:55 +0000 Subject: [PATCH] adding welcome github action --- .github/workflows/welcome | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/welcome diff --git a/.github/workflows/welcome b/.github/workflows/welcome new file mode 100644 index 0000000..45b59cc --- /dev/null +++ b/.github/workflows/welcome @@ -0,0 +1,18 @@ +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: 'Hello there, thanks for opening an issue. We welcome you to the #90DaysOfDevOps community!' + pr-message: 'Hello there, thanks for opening a Pull Request. Someone will review it soon.'