Newer
Older
dub_jkp / .github / workflows / pr_info_intro.yml
@Jan Jurzitza Jan Jurzitza on 9 Mar 2023 763 bytes try to fix pr_info permission problem (#2621)
  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. jobs:
  12. intro_comment:
  13. name: Make intro comment
  14. runs-on: ubuntu-20.04
  15. steps:
  16. - name: 'Prepare sticky comment'
  17. # commit of v2.5.0
  18. # same one used again at the bottom of the file to update the comment.
  19. uses: marocchino/sticky-pull-request-comment@3d60a5b2dae89d44e0c6ddc69dd7536aec2071cd
  20. with:
  21. message: |
  22. Thanks for your Pull Request and making D better!
  23.  
  24. This comment will automatically be updated to summarize some statistics in a few minutes.
  25. only_create: true