close-pull-request.yml 670 B

1234567891011121314151617181920212223
  1. # GitHub actions workflow.
  2. # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
  3. # https://github.com/superbrothers/close-pull-request
  4. name: Close Pull Request
  5. on:
  6. pull_request_target:
  7. types: [opened]
  8. jobs:
  9. run:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: superbrothers/close-pull-request@v3
  13. with:
  14. comment: >
  15. Thanks for your contribution!
  16. Unfortunately, we don't use GitHub pull requests to manage code
  17. contributions to this repository.
  18. Instead, please see [README.md](../blob/HEAD/README.md) which
  19. provides full instructions on how to get involved.