From bfb51a5d2c2a068e0c8c0c447e89bdb215e6dd6b Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Sat, 2 Mar 2024 19:05:37 +0100 Subject: [PATCH] CI: Auto Assign author to PR (Github Action) --- .github/workflows/auto-assign-pr.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-assign-pr.yml diff --git a/.github/workflows/auto-assign-pr.yml b/.github/workflows/auto-assign-pr.yml new file mode 100644 index 000000000..60adc8173 --- /dev/null +++ b/.github/workflows/auto-assign-pr.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