From bed75c10999452b6aae2ebbc6a82a7a581f5e332 Mon Sep 17 00:00:00 2001 From: nothingismagick Date: Wed, 15 Jan 2020 17:58:01 +0100 Subject: [PATCH] feat(workflows): first-timer message (#326) * feat(workflows): first-timer message Just a little "hey there". For PRs remind them to sign commits. * add explanation about why signed commits * enhance pr-message using the advice from @nklayman --- .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..b8de9d8a7 --- /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 so much for your interest in Tauri!'' first issue' + pr-message: 'Thanks so much for your contribution! :heart: We will get to reviewing and merging your PR asap. In the meantime, please make sure you have signed all your commits. Signed commits mean that we can have improved level of trust that the commit was actually pushed by you.'' first pr'