From 61a144b4d9deaf85c7d229cc6f5d20b00c898fd5 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Thu, 14 Mar 2024 19:16:19 +0100 Subject: [PATCH] For PRs, automatically set the author --- .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 00000000..406f25fb --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,15 @@ +name: Auto Author Assign + +on: + pull_request_target: + types: [ opened, reopened ] + +permissions: + pull-requests: write + +jobs: + assign-author: + name: Auto assign PR + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v2.1.0