labeler.yml 555 B

12345678910111213141516171819202122
  1. # .github/labeler.yml
  2. # 为 actions/labeler 定义标签规则
  3. # 文档相关的标签
  4. documentation:
  5. - changed-files:
  6. - any-glob-to-any-file: ['i18n/**/*.md', 'README.md', 'CONTRIBUTING.md', 'LICENSE']
  7. # CI/CD 工作流相关的标签
  8. cicd:
  9. - changed-files:
  10. - any-glob-to-any-file: '.github/workflows/*'
  11. # 提示词相关的标签
  12. prompt:
  13. - changed-files:
  14. - any-glob-to-any-file: 'i18n/zh/prompts/**/*.md'
  15. # 实战案例相关的标签
  16. example:
  17. - changed-files:
  18. - any-glob-to-any-file: 'i18n/zh/documents/实战案例/**/*.md'