greetings.yml 424 B

12345678910111213141516
  1. name: Greetings
  2. on: [pull_request, issues]
  3. jobs:
  4. greeting:
  5. runs-on: ubuntu-latest
  6. permissions:
  7. issues: write
  8. pull-requests: write
  9. steps:
  10. - uses: actions/first-interaction@v1
  11. with:
  12. repo-token: ${{ secrets.GITHUB_TOKEN }}
  13. issue-message: 'Message that will be displayed on users first issue'
  14. pr-message: 'Message that will be displayed on users first pull request'