process-pull-request.yml 509 B

123456789101112131415
  1. name: process-pull-request
  2. on:
  3. pull_request_target:
  4. types: [opened, reopened, edited, synchronize, review_requested, ready_for_review, assigned]
  5. jobs:
  6. add_label:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v2
  10. - uses: actions-ecosystem/action-add-labels@v1
  11. if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
  12. with:
  13. labels: 'PR: Community Contribution :crown:'