From bc24805f9db371794048c43565fe206a706c2e45 Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Sat, 16 May 2020 23:57:00 +0300 Subject: [PATCH] dev: welcome first-time contributors --- .github/workflows/welcome.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/welcome.yml diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml new file mode 100644 index 000000000000..91fc528480c8 --- /dev/null +++ b/.github/workflows/welcome.yml @@ -0,0 +1,12 @@ +name: Auto message +on: [pull_request, issues] +jobs: + build: + name: Hello new contributor + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Hey, thank you for opening your first Issue ! 🙂" + pr-message: "Hey, thank you for opening your first Pull Request !"