Skip to content

Commit

Permalink
feat(gh-actions): Welcome first time contributors (#1118)
Browse files Browse the repository at this point in the history
* added a github action for first time contributors to the repo

* Update .github/workflows/welcome-first-time-contributors.yml

Co-authored-by: Wolfgang Hobmaier <[email protected]>

* update welcome-first-time-contributors.yml file

Co-authored-by: Wolfgang Hobmaier <[email protected]>
  • Loading branch information
0xJaskeerat and WoH authored Nov 1, 2021
1 parent dbd8744 commit 59a3587
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/welcome-first-time-contributors.yml
Original file line number Diff line number Diff line change
@@ -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! 👀

0 comments on commit 59a3587

Please sign in to comment.