From ceb1c85609a1e981bf5e85bf0813ad10474bea93 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 3 Nov 2024 21:05:15 +0200 Subject: [PATCH] Update auto-assign.yml --- .github/workflows/auto-assign.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index 1129bd90..3de6daa3 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -15,12 +15,13 @@ jobs: - name: Assign author to issue if: github.event_name == 'issues' - uses: actions-ecosystem/action-assign@v2 + uses: kentaro-m/assign-issue-to-author-action@v1.0.0 with: - assignees: ${{ github.actor }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Assign author to pull request if: github.event_name == 'pull_request' - uses: actions-ecosystem/action-assign@v2 + uses: kentaro-m/assign-issue-to-author-action@v1.0.0 with: - assignees: ${{ github.actor }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +