From a7067373166ef73e889c8289fe256bdaeb4f7863 Mon Sep 17 00:00:00 2001 From: tomokisun Date: Thu, 28 Dec 2023 04:10:13 +0900 Subject: [PATCH 1/2] =?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 From f4616e359041e857f4bce7a481717e08f0184575 Mon Sep 17 00:00:00 2001 From: tomokisun Date: Thu, 28 Dec 2023 04:11:43 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20=F0=9F=A4=96=20labeler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/labeler.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index a62cc320..c2b470b3 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -2,6 +2,9 @@ name: "Pull Request Labeler" on: - pull_request +permissions: + pull-requests: write + jobs: triage: permissions: