From a7067373166ef73e889c8289fe256bdaeb4f7863 Mon Sep 17 00:00:00 2001 From: tomokisun Date: Thu, 28 Dec 2023 04:10:13 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20auto=20assign?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-assign.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/auto-assign.yml diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 00000000..991927f4 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,18 @@ +name: Auth Assign + +on: + pull_request: + types: opened + +permissions: + pull-requests: write + repository-projects: read + +jobs: + auto-assign: + runs-on: ubuntu-latest + steps: + - name: Set GitHub assignees + env: + GH_TOKEN: ${{ github.token }} + run: gh pr edit ${{ github.event.number }} --add-assignee ${{ github.actor }} --repo ${{ github.repository }} \ No newline at end of file