From 0b49852f40b8218ef3455093e8ad1423e0e394f7 Mon Sep 17 00:00:00 2001 From: YuMin <55650732+yuminn-k@users.noreply.github.com> Date: Thu, 25 Jan 2024 19:59:39 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20Implement=20auto-assign=20f?= =?UTF-8?q?or=20new=20issues=20with=20GitHub=20Actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit introduces a new feature where new issues and pull requests are automatically assigned using GitHub Actions. An auto-assign.yml configuration file has been created for this purpose. This will streamline the management of issues and pull requests. Related Issue: #7 --- .github/workflows/auto-assign.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000..c10d3dd --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,19 @@ +name: Auto Assign +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - name: 'Auto-assign issue' + uses: pozil/auto-assign-issue@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + assignees: yuminn-k + numOfAssignee: 1