From dc6639bf692375e54fc09d14d154bf56610ebc98 Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Mon, 27 Feb 2023 16:51:26 +0000 Subject: [PATCH] ci: automatically assign new PRs --- .github/workflows/pr-auto-assign.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/pr-auto-assign.yaml diff --git a/.github/workflows/pr-auto-assign.yaml b/.github/workflows/pr-auto-assign.yaml new file mode 100644 index 0000000000..fc11013d66 --- /dev/null +++ b/.github/workflows/pr-auto-assign.yaml @@ -0,0 +1,16 @@ +# Filtering pull requests is much easier when we can reliably guarantee +# that the "Assignee" field is populated. +name: PR Auto Assign + +on: + pull_request_target: + types: [ opened ] + +permissions: + pull-requests: write + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v1.6.2