From aa9d49136da4d7dcf27858bbad617c4e0540a478 Mon Sep 17 00:00:00 2001 From: samtiz Date: Thu, 10 Jul 2025 00:50:56 +0900 Subject: [PATCH] fix assign other error --- .github/workflows/assign-on-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assign-on-comment.yml b/.github/workflows/assign-on-comment.yml index 0b0b661..7c73f60 100644 --- a/.github/workflows/assign-on-comment.yml +++ b/.github/workflows/assign-on-comment.yml @@ -35,7 +35,7 @@ jobs: # Job 2: Admin can assign others assign-others: # Only run if the comment starts with '/assign @' and the commenter is in the admin group - if: startsWith(github.event.comment.body, '/assign @') && contains(fromJson('["OWNER", "COLLABORATOR", "MEMBER"]'), github.event.author_association) + if: startsWith(github.event.comment.body, '/assign @') && contains(fromJson('["OWNER", "COLLABORATOR", "MEMBER"]'), github.event.comment.author_association) runs-on: ubuntu-latest permissions: issues: write