1. name: New contributor message
    
  2. 
    
  3. on:
    
  4.   pull_request_target:
    
  5.     types: [opened]
    
  6. 
    
  7. jobs:
    
  8.   build:
    
  9.     name: Hello new contributor
    
  10.     runs-on: ubuntu-latest
    
  11.     steps:
    
  12.       # Pinned to v2.0
    
  13.       - uses: deborah-digges/new-pull-request-comment-action@224c179a9e23f65ec50ff3240b8716369dc415d7
    
  14.         with:
    
  15.           access-token: ${{ secrets.GITHUB_TOKEN }}
    
  16.           message: |
    
  17.             Hello @{}! Thank you for your contribution 💪
    
  18. 
    
  19.             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).
    
  20. 
    
  21.             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!
    
  22. 
    
  23.             If you have any design or process questions then you can ask in the [Django forum](https://forum.djangoproject.com/c/internals/5).
    
  24. 
    
  25.             Welcome aboard ⛵️!