2
0

new_contributor_pr.yml 951 B

123456789101112131415161718192021222324252627
  1. name: New contributor message
  2. on:
  3. pull_request_target:
  4. types: [opened]
  5. permissions:
  6. pull-requests: write
  7. jobs:
  8. build:
  9. name: Hello new contributor
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/first-interaction@v1
  13. with:
  14. repo-token: ${{ secrets.GITHUB_TOKEN }}
  15. pr-message: |
  16. Hello! Thank you for your contribution 💪
  17. As it's your first contribution be sure to check out the [patch review checklist](https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/submitting-patches/#patch-review-checklist).
  18. If you're fixing a ticket [from Trac](https://code.djangoproject.com/) make sure to set the _"Has patch"_ flag and include a link to this PR in the ticket!
  19. If you have any design or process questions then you can ask in the [Django forum](https://forum.djangoproject.com/c/internals/5).
  20. Welcome aboard ⛵️!