From 7d43fa2c66f3a27271566636869eecdc178369bd Mon Sep 17 00:00:00 2001 From: Laszlo Fogas Date: Tue, 27 Aug 2019 09:08:09 +0200 Subject: [PATCH] Greetings workflow --- .github/workflows/greetings.yml | 13 +++++++++++++ 1 file changed, 13 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..e6c48d0c3 --- /dev/null +++ b/.github/workflows/greetings.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: 'Looks like this is your first issue. Welcome to the community! :wave:' + pr-message: 'Looks like you just opened your first PR. :clap: This is awesome, thanks and keep up!'