From e15affc5f7fc2a0ed83708aed23f514a29c6b097 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Wed, 9 Jun 2021 19:01:41 +0200 Subject: GitHub: add action to assign PR author as assignee --- .github/workflows/auto-author-assign.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-author-assign.yml (limited to '.github') diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml new file mode 100644 index 000000000..cd30420f3 --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,13 @@ +name: "Assign Author to PR" +on: + pull_request_target: + types: [opened, reopened, ready_for_review, locked] + +permissions: + pull-requests: write + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v1.3.5 -- cgit v1.2.3