From 587589bfe37bf38a21d908c11fde1e2f76f4e9ec Mon Sep 17 00:00:00 2001 From: Robert Prince Date: Thu, 8 Oct 2020 12:42:46 -0700 Subject: [PATCH] Add first issue/PR welcome message action (#185) * Add first issue/PR welcome message action Signed-off-by: Robert Prince * update first-pr-issue message with a simple greeting Signed-off-by: Alex Goodman Co-authored-by: Alex Goodman Co-authored-by: Alex Goodman --- .github/workflows/first-pr-issue-message.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/first-pr-issue-message.yaml diff --git a/.github/workflows/first-pr-issue-message.yaml b/.github/workflows/first-pr-issue-message.yaml new file mode 100644 index 000000000..5e47c1f7c --- /dev/null +++ b/.github/workflows/first-pr-issue-message.yaml @@ -0,0 +1,15 @@ +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: |- + Hey :wave:! Welcome to the repo and thanks for reporting, we'll review this issue soon! + pr-message: |- + Hey :wave:! Welcome to the repo and thanks for your contribution, we'll review your PR soon! \ No newline at end of file