Newer
Older
dub_jkp / .github / workflows / pr_info_intro.yml
  1. name: PR Info (pre-comment)
  2.  
  3. on:
  4. # NOTE: high probability for security vulnerabilities if doing ANYTHING in
  5. # this file other than commenting something!
  6. pull_request_target:
  7. branches:
  8. - master
  9. - stable
  10.  
  11. permissions:
  12. pull-requests: write
  13.  
  14. jobs:
  15. intro_comment:
  16. name: Make intro comment
  17. runs-on: ubuntu-latest
  18. steps:
  19. - name: 'Prepare sticky comment'
  20. uses: marocchino/sticky-pull-request-comment@v2.9.0
  21. with:
  22. message: |
  23. Thanks for your Pull Request and making D better!
  24.  
  25. This comment will automatically be updated to summarize some statistics in a few minutes.
  26. only_create: true