mirror of
https://github.com/tradecatlabs/vibe-coding-cn.git
synced 2026-07-28 03:07:56 +00:00
45b9d3b8eb
This commit introduces standard GitHub community files including: - Issue templates for bug reports and feature requests. - Pull Request template. - Security policy with contact email. - Funding configuration with GitHub Sponsors and custom links. Updates include: - .github/ISSUE_TEMPLATE/ with bug_report.md and feature_request.md. - .github/PULL_REQUEST_TEMPLATE.md. - .github/SECURITY.md with tukuai.ai@gmail.com as contact email. - .github/FUNDING.yml with github: tukuaiai and custom crypto/social links. - README.md with a new 联系方式 section and fixed Mermaid diagram syntax. - .gitignore updated to track .github/ directory. This ensures better community engagement and project maintainability.
38 lines
1.1 KiB
Markdown
38 lines
1.1 KiB
Markdown
---
|
|
name: Pull Request
|
|
about: 提交您的贡献
|
|
title: "[类型]: 描述"
|
|
labels: ''
|
|
assignees: ''
|
|
|
|
---
|
|
|
|
**请描述本次 PR 的类型**
|
|
例如:
|
|
- [ ] Bug 修复
|
|
- [ ] 功能增加
|
|
- [ ] 代码优化/重构
|
|
- [ ] 文档更新
|
|
- [ ] 其他 (请说明):
|
|
|
|
**本次 PR 解决了什么问题或增加了什么功能?**
|
|
请清晰简洁地描述本次 Pull Request 的目的和具体改动。
|
|
|
|
**相关 Issue**
|
|
请关联本次 PR 解决或关联的 Issue (例如:`Closes #123`, `Fixes #456`, `Related to #789`)。
|
|
|
|
**测试步骤**
|
|
请描述如何测试本次改动。例如:
|
|
1. `git checkout <branch-name>`
|
|
2. `npm install` (如果依赖有变动)
|
|
3. `npm test` 或 `yarn test`
|
|
4. 运行应用并验证 `...`
|
|
|
|
**检查列表**
|
|
请在提交 PR 前确保以下事项已完成:
|
|
- [ ] 我已阅读并遵循项目的贡献指南。
|
|
- [ ] 我已在本地运行了测试,并且所有测试都通过了。
|
|
- [ ] 我已确保代码风格与项目保持一致。
|
|
- [ ] 我已更新了相应的文档 (如果适用)。
|
|
- [ ] 我已对本次提交进行了有意义的 Commit Message。
|