From a425de93a60584e1e7b8ae735d0cbc1bd8420691 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 27 May 2024 17:55:40 -0500 Subject: [PATCH] CLDR-17181 add auto author assign - whoever opens the PR, gets assigned to it by default. - can reassign if needed. --- .github/workflows/auto-author-assign.yml | 15 +++++++++++++++ 1 file changed, 15 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 00000000000..b39ed7546e9 --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,15 @@ +# .github/workflows/auto-author-assign.yml +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