mirror of
https://github.com/tradecatlabs/vibe-coding-cn.git
synced 2026-08-05 23:27:45 +00:00
5423dd1fe8
## 新增内容 ### GitHub Actions 工作流 - ci.yml: Markdown lint、链接检查、项目结构验证 - welcome.yml: 自动欢迎新贡献者 - labeler.yml: PR 自动标签 ### Issue 模板 - prompt_contribution.md: 提示词贡献模板 - documentation.md: 文档改进模板 - config.yml: 模板配置(含社区链接) ### 实战案例 - 02-blog-system.md: 个人博客系统(Next.js + MDX) - 04-cli-tool.md: 命令行工具(Python + Click) - 05-chrome-extension.md: Chrome 扩展(网页笔记助手) ### 编程提示词 - debug-expert.md: 调试专家提示词 - code-review.md: 代码审查提示词 - architecture-design.md: 架构设计提示词 ## 相关 Issues - #5 完善 Wiki 文档 - #6 添加更多实战案例 - #7 扩充提示词库 - #8 激活社区讨论
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: Welcome New Contributors
|
||
|
||
on:
|
||
issues:
|
||
types: [opened]
|
||
pull_request:
|
||
types: [opened]
|
||
|
||
jobs:
|
||
welcome:
|
||
runs-on: ubuntu-latest
|
||
permissions:
|
||
issues: write
|
||
pull-requests: write
|
||
steps:
|
||
- uses: actions/first-interaction@v1
|
||
with:
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||
issue-message: |
|
||
👋 感谢您提交第一个 Issue!
|
||
|
||
我们非常重视您的反馈。请确保:
|
||
- 已阅读 [贡献指南](CONTRIBUTING.md)
|
||
- 提供了足够的上下文信息
|
||
- 如果是 Bug,请提供复现步骤
|
||
|
||
我们会尽快回复您!🚀
|
||
|
||
---
|
||
Thanks for opening your first issue! We'll get back to you soon.
|
||
pr-message: |
|
||
🎉 感谢您提交第一个 Pull Request!
|
||
|
||
这是您对本项目的首次贡献,我们非常感激!请确保:
|
||
- PR 描述清晰说明了改动内容
|
||
- 代码符合项目规范
|
||
- 已更新相关文档(如适用)
|
||
|
||
我们会尽快审核您的代码!💪
|
||
|
||
---
|
||
Thanks for your first PR! We'll review it soon.
|