From 10d36c392b7f719aea750bee95c473d04abaa701 Mon Sep 17 00:00:00 2001 From: Prem Chaitanya Prathi Date: Fri, 19 Apr 2024 14:28:46 +0530 Subject: [PATCH] chore: workflow to autoassign PR (#2604) --- .github/workflows/auto_assign_pr.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/auto_assign_pr.yml diff --git a/.github/workflows/auto_assign_pr.yml b/.github/workflows/auto_assign_pr.yml new file mode 100644 index 000000000..e35bbf6d6 --- /dev/null +++ b/.github/workflows/auto_assign_pr.yml @@ -0,0 +1,12 @@ +name: Auto Assign PR to Creator + +on: + pull_request: + types: + - opened + +jobs: + assign_creator: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v1.6.2 \ No newline at end of file