diff --git a/.github/workflows/process-pull-request.yml b/.github/workflows/process-pull-request.yml new file mode 100644 index 0000000000..3a7ecf27b3 --- /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.repository_owner != 'Ultimaker' }} + with: + labels: 'Community Contribution :crown:' \ No newline at end of file