mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-18 10:20:16 +08:00
- Created FEATURE_REQUEST_ISSUE.md with complete issue content - Created CREATE_ISSUE_INSTRUCTIONS.md with step-by-step instructions - Created PR_COMPLIANCE_ANALYSIS.md analyzing compliance with wiki requirements - Created SEARCH_RESULTS_SUMMARY.md documenting search for existing issues/PRs - Updated PR_DESCRIPTION.md with: - Issue Addressed section (explicitly states problems solved) - Potential Concerns and Side Effects section (required by wiki) - PR Size Note (acknowledges large PR size) - Placeholder for Related Issue number
48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
# Instructions: Creating the Feature Request Issue
|
|
|
|
## Step 1: Go to ComfyUI Issues Page
|
|
|
|
Navigate to: https://github.com/comfyanonymous/ComfyUI/issues/new
|
|
|
|
## Step 2: Copy the Issue Content
|
|
|
|
Copy the entire content from `FEATURE_REQUEST_ISSUE.md` and paste it into the issue body.
|
|
|
|
## Step 3: Set the Title
|
|
|
|
Use this exact title:
|
|
```
|
|
Feature Request: Enhanced run_comfyui.bat with Automated Dependency Checking and CUDA PyTorch Detection
|
|
```
|
|
|
|
## Step 4: Submit the Issue
|
|
|
|
Click "Submit new issue"
|
|
|
|
## Step 5: Note the Issue Number
|
|
|
|
After creating the issue, GitHub will show you the issue number (e.g., #12345). **Save this number** - you'll need it to reference in your PR.
|
|
|
|
## Step 6: Update PR Description
|
|
|
|
Once you have the issue number, update your PR description to include:
|
|
```markdown
|
|
## Related Issue
|
|
|
|
Addresses #[issue-number]
|
|
```
|
|
|
|
Or if it fully addresses the issue:
|
|
```markdown
|
|
## Related Issue
|
|
|
|
Closes #[issue-number]
|
|
```
|
|
|
|
## Quick Reference
|
|
|
|
- **Direct link to create issue**: https://github.com/comfyanonymous/ComfyUI/issues/new
|
|
- **Issue content file**: `FEATURE_REQUEST_ISSUE.md`
|
|
- **PR description file**: `PR_DESCRIPTION.md` (update with issue number after creation)
|
|
|