-
Notifications
You must be signed in to change notification settings - Fork 175
Feat/add issue templates #92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Add English and Chinese issue templates - Bug Report templates (bug_report.yml, bug_report_cn.yml) - Feature Request templates (feature_request.yml, feature_request_cn.yml) - API Proposal templates (api_proposal.yml, api_proposal_cn.yml) - Configure template settings in config.yml - Separate templates by language for better UX - All templates include structured forms with validation - API Proposal template designed for issue #60 discussion
- Change EOF to CHANGELOG_EOF as heredoc delimiter - Prevent commit messages containing 'EOF' from breaking changelog generation - Improve robustness of release notes generation
Resolve conflict in release.yml by keeping CHANGELOG_EOF delimiter
…discussion option - Replace 6 separate templates (3 EN + 3 CN) with 4 bilingual templates - Add General Discussion template as fallback option - All templates now use bilingual format (中文 | English) - Simplify user experience: 6 options → 4 options - Templates: 1. Bug 报告 | Bug Report 2. 功能请求 | Feature Request 3. API 语法糖提案 | API Proposal 4. 通用讨论 | General Discussion (new) - Update config.yml with simplified contact links - Maintain blank_issues_enabled: false for structured contributions
Reviewer's Guide添加了结构化的 GitHub Issue 模板(API 提案、错误报告、功能需求、一般讨论),并配置了 Issue 处理方式,同时修复了发布工作流中 changelog 输出分隔符的一个小问题。 用于生成发布工作流 changelog 输出的流程图flowchart TD
A[release_workflow_job] --> B[Checkout_repository]
B --> C[Determine_PREV_TAG]
C --> D{PREV_TAG_exists}
D -->|Yes| E[Append_Whats_Changed_section_to_GITHUB_OUTPUT]
D -->|No| F[Append_Initial_release_to_GITHUB_OUTPUT]
E --> G[Wrap_content_with_CHANGELOG_EOF_delimiter]
F --> G
G --> H[Set_CHANGELOG_output_variable]
H --> I[Set_VERSION_NO_V_output_variable]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your Experience访问你的 dashboard 以:
Getting HelpOriginal review guide in EnglishReviewer's GuideAdds structured GitHub issue templates (API proposal, bug report, feature request, general discussion) and configures issue handling, plus a small fix to the release workflow changelog output delimiter. Flow diagram for release workflow changelog output generationflowchart TD
A[release_workflow_job] --> B[Checkout_repository]
B --> C[Determine_PREV_TAG]
C --> D{PREV_TAG_exists}
D -->|Yes| E[Append_Whats_Changed_section_to_GITHUB_OUTPUT]
D -->|No| F[Append_Initial_release_to_GITHUB_OUTPUT]
E --> G[Wrap_content_with_CHANGELOG_EOF_delimiter]
F --> G
G --> H[Set_CHANGELOG_output_variable]
H --> I[Set_VERSION_NO_V_output_variable]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey - 我已经审阅了你的更改,一切看起来很棒!
帮我变得更有用吧!请对每条评论点 👍 或 👎,我会根据你的反馈改进之后的代码审查。
Original comment in English
Hey - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
- Resolve conflicts by keeping local bilingual templates - Maintain 4-template structure (Bug/Feature/API/General) - Remove redundant *_cn.yml files from master
Summary by Sourcery
添加结构化的 GitHub Issue 模板,并调整发布工作流中变更日志输出的标记。
New Features:
Enhancements:
Original summary in English
Summary by Sourcery
Add structured GitHub issue templates and adjust the release workflow changelog output marker.
New Features:
Enhancements: