diff --git a/.github/workflows/welcome-first-time-contributors.yml b/.github/workflows/welcome-first-time-contributors.yml new file mode 100644 index 000000000..7586eb1b6 --- /dev/null +++ b/.github/workflows/welcome-first-time-contributors.yml @@ -0,0 +1,34 @@ +name: Welcome first time contributors + +on: + pull_request_target: + types: + - opened + issues: + types: + - opened + +jobs: + welcome: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: | + Hello there ${{ github.actor }} 👋 + + Welcome to tsoa !!💖🥳 + + Thank you and congratulations 🎉 for opening your very first issue in this project. + + We will try to get back to you as soon as we can.👀 + + + pr-message: | + Hello there ${{ github.actor }} 👋 + + Thank you and congrats 🎉 for opening your first PR on this project.✨ + + We will review the following PR soon! 👀 +