From 70813e8ac11ac7cae00c45c2868544b9216c17bf Mon Sep 17 00:00:00 2001 From: Sapate Vaibhav Date: Mon, 20 May 2024 00:37:42 +0530 Subject: [PATCH 1/2] Update auto-assign.yml --- .github/workflows/auto-assign.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index ab1d680..b4df008 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -1,9 +1,11 @@ name: Auto Assign + on: issues: types: [opened] pull_request: types: [opened] + jobs: run: runs-on: ubuntu-latest @@ -11,9 +13,9 @@ jobs: issues: write pull-requests: write steps: - - name: 'Auto-assign issue' - uses: pozil/auto-assign-issue@v1 - with: + - name: 'Auto-assign issue or pull request' + uses: pozil/auto-assign-issue@v1 + with: repo-token: ${{ secrets.GITHUB_TOKEN }} - assignees: ${{ github.event.issue.user.login }} + assignees: ${{ github.event.sender.login }} numOfAssignee: 1 From 27fe2091b1a4f257f0bbbe48df6705b4eb63124b Mon Sep 17 00:00:00 2001 From: Sapate Vaibhav Date: Mon, 20 May 2024 00:39:33 +0530 Subject: [PATCH 2/2] Update auto-assign.yml