From c1d6821271fc5314695f47ebd25c845f9031996d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Christian=20Winther-S=C3=B8rensen?= Date: Thu, 12 Oct 2023 16:41:54 +0200 Subject: [PATCH] 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 00000000..7c64c64b --- /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.0.0