From e1706a8f1308986fa169c61b4bb72bb65eabbd91 Mon Sep 17 00:00:00 2001 From: sno Date: Fri, 31 Oct 2025 12:47:07 +0900 Subject: [PATCH] fix: Remove assignees from weekly-docs-check workflow (#6375) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Removes the `assignees` field from the weekly-docs-check workflow that was causing failures. ## Problem The workflow was attempting to assign `${{ github.repository_owner }}` to created PRs. For organization-owned repositories, `github.repository_owner` is the organization name (e.g., "Comfy-Org"), which cannot be assigned to pull requests. Only individual GitHub users can be assigned. This was causing the workflow to fail: https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/18901589988 ## Solution Removed the `assignees` line from the workflow configuration. The PRs will still be created successfully, just without auto-assignment. ## Changes Made - Removed `assignees: ${{ github.repository_owner }}` from `.github/workflows/weekly-docs-check.yaml:145` Fixes #6364 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6375-fix-Remove-assignees-from-weekly-docs-check-workflow-29b6d73d365081769ec2dc3e68005cc7) by [Unito](https://www.unito.io) --- .github/workflows/weekly-docs-check.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/weekly-docs-check.yaml b/.github/workflows/weekly-docs-check.yaml index 33f092715..c67e4adcb 100644 --- a/.github/workflows/weekly-docs-check.yaml +++ b/.github/workflows/weekly-docs-check.yaml @@ -142,4 +142,3 @@ jobs: documentation automated draft: true - assignees: ${{ github.repository_owner }}