close-pull-request.yml 544 B

1234567891011121314151617181920
  1. name: Close Pull Request
  2. on:
  3. pull_request_target:
  4. types: [opened]
  5. jobs:
  6. run:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: superbrothers/close-pull-request@v3
  10. with:
  11. comment: |
  12. Thanks for your Pull Request! We love contributions.
  13. However, you should instead open your PR on the main repository:
  14. https://github.com/symfony/symfony
  15. This repository is what we call a "subtree split": a read-only subset of that main repository.
  16. We're looking forward to your PR there!