From 7026ad666c004d6fcf4e16005befadd52de22b90 Mon Sep 17 00:00:00 2001 From: harmeetsingh11 Date: Fri, 14 Feb 2025 00:34:26 +0530 Subject: [PATCH] feat: add workflow for reviewer assign --- .github/workflows/action.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..a838d1b --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,12 @@ +name: 'Auto Assign' +on: + pull_request: + types: [opened, ready_for_review] + +jobs: + add-reviews: + runs-on: ubuntu-latest + steps: + - uses: kentaro-m/auto-assign-action@v2.0.0 + with: + configuration-path: '.github/auto_assign.yml'