From b30042d2e42c71d57dec985621c2cdd0c911d607 Mon Sep 17 00:00:00 2001 From: Anne Gentle Date: Sun, 23 Aug 2020 13:52:41 -0500 Subject: [PATCH] Create greetings.yml Adds messages for someone's first issue and first PR. --- .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 0000000..e7103ec --- /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: 'Thanks for logging an issue. If you would like to fix it yourself, that''s fine. Assign yourself and send in a PR.' + pr-message: 'Thanks for sending a pull request. You can message me on LinkedIn or Twitter if I don''t respond here quickly.'