From d12685eab22c0082de1d75bb1c42bb13ad095e1c Mon Sep 17 00:00:00 2001 From: Leonid Stashevsky Date: Fri, 21 Jun 2024 13:23:18 +0200 Subject: [PATCH] Automatically request review for new PRs --- .github/workflows/auto-assign.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/auto-assign.yml diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 00000000..6aa2c2a0 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,15 @@ +name: Assign Reviewer to PR + +on: + pull_request: + types: [opened] + +jobs: + assign-reviewer: + runs-on: ubuntu-latest + steps: + - name: Assign reviewer + uses: kentaro-m/auto-assign-action@v2.0.0 + with: + reviewers: 'e5l' + repo-token: '${{ secrets.GITHUB_TOKEN }}'