From 8d308f15c2952bb9e62fdacb6028894ed59c8b43 Mon Sep 17 00:00:00 2001 From: AlexD Date: Tue, 15 Mar 2022 08:24:17 +0100 Subject: [PATCH] Added first-interaction workflow --- .github/workflows/first-interaction.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..dd79f647 --- /dev/null +++ b/.github/workflows/first-interaction.yml @@ -0,0 +1,19 @@ +name: First interaction +on: + pull_request_target: + types: + - opened + issues: + types: + - opened + +jobs: + first-interaction: + runs-on: ubuntu-latest + name: First interaction + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Welcome to AsyncAPI.NET. Thank you ${{ github.event.pull_request.user.login }} for reporting your first issue. Please check out our [contributors guide](https://github.com/LEGO/AsyncAPI.NET/blob/main/CONTRIBUTION.md).' + pr-message: 'Thank you ${{ github.event.pull_request.user.login }} for your first pull request to AsyncAPI.NET repository. Please check out our [contributors guide](https://github.com/LEGO/AsyncAPI.NET/blob/main/CONTRIBUTION.md).'