From 935d83153c2bf860b1ecd6b5e753445723883d56 Mon Sep 17 00:00:00 2001 From: wrongecho <32306651+wrongecho@users.noreply.github.com> Date: Sun, 5 Feb 2023 11:46:45 +0000 Subject: [PATCH] Add first interaction action This action greets new contributors that open issues/PRs --- .github/workflows/first-interaction.yml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/first-interaction.yml diff --git a/.github/workflows/first-interaction.yml b/.github/workflows/first-interaction.yml new file mode 100644 index 00000000..141baa2f --- /dev/null +++ b/.github/workflows/first-interaction.yml @@ -0,0 +1,27 @@ +name: Welcome New Contributor + +on: + issues: + types: [opened] + pull_request_target: + types: [opened] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1.1.1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: | + Hello & Welcome! :) + + Thanks for taking the time to get in touch. We'll review this issue shortly. + + Whilst you're waiting, please feel free to check out the [forum](https://forum.itflow.org). + pr-message: | + Hello & Welcome! :) + + Thanks for taking the time to help improve ITFlow. We're excited to review your contributions - we'll review this PR as soon as we can! + + Whilst you're waiting, please feel free to check out the [forum](https://forum.itflow.org).