From feb1fa1198bb90098000821b3c7b72a5b5bf7e69 Mon Sep 17 00:00:00 2001 From: Ahmed Ejaz Date: Tue, 25 Jun 2024 12:20:24 +0500 Subject: [PATCH] 12603 - add auto-author-assign workflow --- .github/workflows/auto-author-assign.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-author-assign.yml diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml new file mode 100644 index 0000000000..60adc81739 --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,14 @@ +name: Auto Author Assign + +on: + pull_request_target: + types: [opened, reopened] + +permissions: + pull-requests: write + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v2.1.0