From 12ada7567408006591fb9cd7a046624961398d7e Mon Sep 17 00:00:00 2001 From: Brendan Lane Date: Sat, 9 Jan 2021 23:13:02 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Add=20a=20greeter=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/greeter.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/greeter.yaml diff --git a/.github/workflows/greeter.yaml b/.github/workflows/greeter.yaml new file mode 100644 index 0000000..862a81c --- /dev/null +++ b/.github/workflows/greeter.yaml @@ -0,0 +1,13 @@ +name: 👋 Greeter + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GH_BOT_TOKEN }} + issue-message: '### 🎉 You just made your first issue! Thank you and hopefully we can fix your problem' + pr-message: '### 🎉 You just made your first pull request! Thank you and hopefully we deal with this soon'