From 9b9d804fc256178ec9d435956c9d529cbb60d4db Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 7 Aug 2021 20:36:30 +0100 Subject: [PATCH] :construction_worker: Adds workflow to assign PR reviewers --- .github/workflows/assign-reviewers.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/assign-reviewers.yml diff --git a/.github/workflows/assign-reviewers.yml b/.github/workflows/assign-reviewers.yml new file mode 100644 index 00000000..5dadc3be --- /dev/null +++ b/.github/workflows/assign-reviewers.yml @@ -0,0 +1,12 @@ +# Uses the .github/OWNERS file to assign appropriate reviewers to PRs +on: [pull_request] +jobs: + autolabeler-codeowners: + runs-on: ubuntu-latest + name: Assign Reviewers + steps: + - uses: actions/checkout@v1 + - name: Uses owners file to assign appropriate reviews to PR + uses: pratikmallya/autolabeler-codeowners@releases/v1 + with: + githubToken: ${{ secrets.GITHUB_TOKEN }}