Skip to content

Commit e7ae199

Browse files
Copilotsnomiaoclaude
authored
docs: use generic repository references in transfer task documentation (#106)
* feat: add desktop issue transfer task This adds a new task to transfer issues labeled "frontend" from Comfy-Org/desktop to Comfy-Org/ComfyUI_frontend. - Created gh-desktop-issue-transfer task with full workflow - Added comprehensive test coverage with MSW mocking - Follows same pattern as gh-frontend-issue-transfer - Transfers issues with comments, labels, and assignees - Tracks transferred issues to avoid duplicates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: register desktop issue transfer task in run-gh-tasks - Add runGithubDesktopIssueTransferTask to imports - Register task in TASKS array - Ensures desktop issues with 'frontend' label are transferred to ComfyUI_frontend repo 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: add ComfyUI to Desktop issue transfer task Transfers issues labeled "desktop" from comfyanonymous/ComfyUI to Comfy-Org/desktop. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: add Frontend to Desktop issue transfer task Transfers issues labeled "desktop" from Comfy-Org/ComfyUI_frontend to Comfy-Org/desktop. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: register new desktop issue transfer tasks in run-gh-tasks Adds ComfyUI to Desktop and Frontend to Desktop issue transfer tasks to the automated task runner. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: Implement GitHub issue transfer tasks between ComfyUI and frontend/desktop repositories - Added `gh-issue-transfer-comfyui-to-frontend` task to transfer issues from ComfyUI to ComfyUI_frontend. - Added `gh-issue-transfer-desktop-to-frontend` task to transfer issues from Comfy-Org/desktop to ComfyUI_frontend. - Added `gh-issue-transfer-frontend-to-desktop` task to transfer issues from ComfyUI_frontend to Comfy-Org/desktop. - Created corresponding test files for the new transfer tasks to ensure functionality and error handling. - Updated `run-gh-tasks.ts` to include the new transfer tasks in the task execution flow. * docs(easylabel.tsx): update comments to clarify allowed label patterns for better understanding and maintainability * refactor(gh-issue-transfer-frontend-to-desktop): remove limit on issue transfer to allow processing of all issues * Initial plan * docs: update documentation to use generic repository references instead of hardcoded names Co-authored-by: snomiao <7323030+snomiao@users.noreply.github.com> --------- Co-authored-by: snomiao <snomiao@gmail.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: snomiao <7323030+snomiao@users.noreply.github.com>
1 parent d493c3d commit e7ae199

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • app/tasks/gh-issue-transfer-frontend-to-desktop

app/tasks/gh-issue-transfer-frontend-to-desktop/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import { pageFlow } from "sflow";
1111
* GitHub Frontend to Desktop Issue Transfer Task
1212
*
1313
* Workflow:
14-
* 1. Fetch new/unseen issues from Comfy-Org/ComfyUI_frontend with label "desktop"
14+
* 1. Fetch new/unseen issues from the ComfyUI_frontend repository with label "desktop"
1515
* 2. For each issue:
16-
* 1. Create corresponding issues in Comfy-Org/desktop, copying title, body (+meta and backlinks), labels, assignees
16+
* 1. Create corresponding issues in the Comfy-Org/desktop repository (currently hardcoded in config.dstRepoUrl), copying title, body (+meta and backlinks), labels, assignees
1717
* 2. Comment on original issue that it's been transferred
1818
* 3. Close original issue in the frontend repository
1919
* 4. Track transferred issues to avoid duplicates

0 commit comments

Comments
 (0)