From 0f11cc0b4beacb644231344a8c86a50db35f5026 Mon Sep 17 00:00:00 2001 From: Adithya Krishna Date: Mon, 4 Dec 2023 00:27:49 +0530 Subject: [PATCH] feat: add first interaction workflow Signed-off-by: Adithya Krishna --- .github/workflows/first-interaction.yml | 29 +++++++++++++++++++++++++ 1 file changed, 29 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 000000000..ce6bb25c8 --- /dev/null +++ b/.github/workflows/first-interaction.yml @@ -0,0 +1,29 @@ +name: "Welcome New Contributors" + +on: + pull_request: + types: opened + issues: + types: opened + +permissions: + pull-requests: write + issues: write + +jobs: + welcome-message: + name: Welcome Contributors + runs-on: ubuntu-latest + timeout-minutes: 10 + if: github.event.action == 'opened' + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + pr-message: | + Thank you for creating your first Pull Request and for being a part of the open signing revolution! 💚🚀 +
Feel free to hop into our community in [Discord](https://documen.so/discord) + issue-message: | + Thank you for opening your first issue and for being a part of the open signing revolution! +
One of our team members will review it and get back to you as soon as it possible 💚 +
Meanwhile, please feel free to hop into our community in [Discord](https://documen.so/discord) \ No newline at end of file