From 8aef77ed13b8436627d36d70189e81f7eb8cef50 Mon Sep 17 00:00:00 2001 From: Amara Graham Date: Thu, 24 Oct 2024 16:39:28 -0500 Subject: [PATCH] Create auto-assign-pr.yml (#4513) --- .github/workflows/auto-assign-pr.yml | 15 +++++++++++++++ 1 file changed, 15 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 00000000000..e20bf2e4627 --- /dev/null +++ b/.github/workflows/auto-assign-pr.yml @@ -0,0 +1,15 @@ +name: Auto Assign + +on: + pull_request: + types: + - opened + +jobs: + add_assignees: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-add-assignees@v1 + with: + github_token: ${{ secrets.github_token }} + assignees: ${{ github.actor }}