welcome.yml 564 B

123456789101112131415161718
  1. name: Welcome WorkFlow
  2. on:
  3. issues:
  4. types: [opened]
  5. pull_request_target:
  6. types: [opened]
  7. jobs:
  8. build:
  9. name: 👋 Welcome
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/first-interaction@v1.1.1
  13. with:
  14. repo-token: ${{ secrets.GITHUB_TOKEN }}
  15. issue-message: "Hello there, thank you for opening an Issue ! 🙏🏻 The team was notified and they will get back to you asap."
  16. pr-message: "Hello there, thank you for opening an PR ! 🙏🏻 The team was notified and they will get back to you asap."