From 4b0c348514aea83003d2076882d9cfbc10bfc200 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Wed, 24 Jun 2020 15:54:36 -0700 Subject: [PATCH] Create welcome_new_people.yml Thought it would be fun to welcome newcomers to the repo since there have been so many! --- .github/workflows/welcome_new_people.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/welcome_new_people.yml diff --git a/.github/workflows/welcome_new_people.yml b/.github/workflows/welcome_new_people.yml new file mode 100644 index 00000000..985ee57e --- /dev/null +++ b/.github/workflows/welcome_new_people.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Thanks for opening your first issue in the **super-linter** repo! :tada:' + pr-message: 'Thanks for opening your first pr in the **super-linter** repo! :tada: This project is built on contributions just like this.'