From dbd172efc5d90410d1c1c04fa8638e02a74f84f7 Mon Sep 17 00:00:00 2001 From: Davide Bortolami Date: Tue, 24 Mar 2020 17:15:27 +0000 Subject: [PATCH] Create greetings.yml Adds greeting for first time user interacts with the repo --- greetings.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 greetings.yml diff --git a/greetings.yml b/greetings.yml new file mode 100644 index 00000000..669221c0 --- /dev/null +++ b/greetings.yml @@ -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: | + Hello! We're very happy to see your first issue. If your issue is about a problem, go back and check you have copy-pasted all the debug logs you can so we can help you as fast as possible! + pr-message: | + Hello! Thank you about this PR. Since this is your first PR, please make sure you have described the improvements and your code is well documented.