From 0300f687ff7497f538c556c47441d9e96c831cfb Mon Sep 17 00:00:00 2001 From: Harry Date: Sun, 23 Apr 2023 02:43:00 -0700 Subject: [PATCH] chore(actions): auto-assign PR author as assignee (#51) --- .github/workflows/auto-assignee.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/auto-assignee.yml diff --git a/.github/workflows/auto-assignee.yml b/.github/workflows/auto-assignee.yml new file mode 100644 index 00000000..12fa2933 --- /dev/null +++ b/.github/workflows/auto-assignee.yml @@ -0,0 +1,12 @@ +name: Add assignee to PRs +on: + pull_request: + types: [ opened, reopened ] +permissions: + pull-requests: write +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@2daaeb2988aef24bf37e636fe733f365c046aba0 +