From 3de48c3d98a0012c0358e3557ae3f52d8ad1b8ee Mon Sep 17 00:00:00 2001 From: gusto Date: Tue, 24 Jan 2023 11:12:54 +0200 Subject: [PATCH] Auto author GH action (#40) --- .github/workflows/auto-author.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/auto-author.yml diff --git a/.github/workflows/auto-author.yml b/.github/workflows/auto-author.yml new file mode 100644 index 0000000..4f838fb --- /dev/null +++ b/.github/workflows/auto-author.yml @@ -0,0 +1,15 @@ +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@v1.6.2 +