From 2a4783d56243b663994af70112e61de20404c070 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 30 Nov 2022 14:53:04 +0100 Subject: [PATCH] Create process-pull-request.yml --- .github/workflows/process-pull-request.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/process-pull-request.yml diff --git a/.github/workflows/process-pull-request.yml b/.github/workflows/process-pull-request.yml new file mode 100644 index 0000000000..56fb015b9d --- /dev/null +++ b/.github/workflows/process-pull-request.yml @@ -0,0 +1,15 @@ +name: process-pull-request + +on: + pull_request_target: + types: [opened, reopened, edited, synchronize, review_requested, ready_for_review, assigned] + +jobs: + add_label: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-ecosystem/action-add-labels@v1 + if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} + with: + labels: 'PR: Community Contribution :crown:'