issue-labeled.yml 6.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Origin Source
  2. # https://github.com/ant-design/ant-design/blob/79f566b7f8abb1012ef55b0d2793bfdf5595b85d/.github/workflows/issue-reply.yml
  3. name: Issue Labeled
  4. on:
  5. issues:
  6. types: [labeled]
  7. permissions:
  8. contents: read
  9. jobs:
  10. issue-labeled:
  11. permissions:
  12. issues: write # for actions-cool/issues-helper to update issues
  13. pull-requests: write # for actions-cool/issues-helper to update PRs
  14. runs-on: ubuntu-latest
  15. steps:
  16. - name: help wanted
  17. if: github.event.label.name == 'help wanted'
  18. uses: actions-cool/issues-helper@v3
  19. with:
  20. actions: 'create-comment'
  21. token: ${{ secrets.ADMIN_TOKEN }}
  22. issue-number: ${{ github.event.issue.number }}
  23. body: |
  24. Hello @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome to [send us a Pull Request](https://help.github.com/en/articles/creating-a-pull-request) for it. Please send your Pull Request to proper branch (feature branch for the new feature, master for bugfix and other changes), fill the [Pull Request Template](https://github.com/go-admin-team/go-admin/blob/master/.github/PULL_REQUEST_TEMPLATE.md) here, provide changelog/TypeScript/documentation/test cases if needed and make sure CI passed, we will review it soon. We appreciate your effort in advance and looking forward to your contribution!
  25. 你好 @${{ github.event.issue.user.login }},我们完全同意你的提议/反馈,欢迎直接在此仓库 [创建一个 Pull Request](https://help.github.com/en/articles/creating-a-pull-request) 来解决这个问题。请将 Pull Request 发到正确的分支(新特性发到 feature 分支,其他发到 master 分支),务必填写 Pull Request 内的[预设模板](https://github.com/go-admin-team/go-admin/blob/master/.github/PULL_REQUEST_TEMPLATE.md),提供改动所需相应的 changelog、TypeScript 定义、测试用例、文档等,并确保 CI 通过,我们会尽快进行 Review,提前感谢和期待您的贡献。
  26. ![giphy](https://user-images.githubusercontent.com/507615/62342668-4735dc00-b51a-11e9-92a7-d46fbb1cc0c7.gif)
  27. - name: 🤔 Need Reproduce
  28. if: github.event.label.name == '🤔 Need Reproduce'
  29. uses: actions-cool/issues-helper@v3
  30. with:
  31. actions: 'create-comment'
  32. token: ${{ secrets.ADMIN_TOKEN }}
  33. issue-number: ${{ github.event.issue.number }}
  34. body: |
  35. Hello @${{ github.event.issue.user.login }}. Please provide a online reproduction by forking this link https://u.ant.design/codesandbox-repro or a minimal GitHub repository. Issues labeled by `Need Reproduce` will be closed if no activities in 3 days.
  36. 你好 @${{ github.event.issue.user.login }}, 我们需要你提供一个在线的重现实例以便于我们帮你排查问题。你可以通过点击 [此处](https://u.ant.design/codesandbox-repro) 创建一个 codesandbox 或者提供一个最小化的 GitHub 仓库。3 天内未跟进此 issue 将会被自动关闭。
  37. ![](https://gw.alipayobjects.com/zos/antfincdn/y9kwg7DVCd/reproduce.gif)
  38. - name: Usage
  39. if: github.event.label.name == 'Usage' || github.event.label.name == 'Question'
  40. uses: actions-cool/issues-helper@v3
  41. with:
  42. actions: 'create-comment,close-issue'
  43. token: ${{ secrets.ADMIN_TOKEN }}
  44. issue-number: ${{ github.event.issue.number }}
  45. body: |
  46. Hello @${{ github.event.issue.user.login }}, we use GitHub issues to trace bugs or discuss plans of Ant Design. So, please [don't ask usage questions](https://github.com/ant-design/ant-design/issues/2320) here. You can try to open a new discussion in [antd discussions](https://github.com/ant-design/ant-design/discussions), select `Q&A` to ask questions, also can ask questions on [Stack Overflow](http://stackoverflow.com/questions/tagged/antd) or [Segment Fault](https://segmentfault.com/t/antd), then apply tag `antd` and `react` to your question.
  47. 你好 @${{ github.event.issue.user.login }},go-admin Issue 板块是用于 bug 反馈与需求讨论的地方。请[勿询问如何使用的问题](https://github.com/go-admin-te/ant-design/issues/699),你可以试着在 [antd discussions](https://github.com/ant-design/ant-design/discussions) 新开一个 discussion,选择 `Q&A` 类别进行提问,也可以在 [Stack Overflow](http://stackoverflow.com/questions/tagged/antd) 或者 [Segment Fault](https://segmentfault.com/t/antd) 中提问(记得添加 `antd` 和 `react` 标签哦~)。
  48. - name: 3.x
  49. if: github.event.label.name == '3.x'
  50. uses: actions-cool/issues-helper@v3
  51. with:
  52. actions: 'create-comment,close-issue'
  53. token: ${{ secrets.ADMIN_TOKEN }}
  54. issue-number: ${{ github.event.issue.number }}
  55. body: |
  56. Hi @${{ github.event.issue.user.login }}. Current version (3.x) is off the maintenance period. We may not accept pull request or fix bug with it anymore. This topic will be auto closed.
  57. 你好 @${{ github.event.issue.user.login }},当前版本(3.x)已经过了维护期。我们不会再接受对其的相关 PR 与 issue。当前 topic 会被自动关闭。
  58. - name: invalid
  59. if: github.event.label.name == 'Invalid'
  60. uses: actions-cool/issues-helper@v3
  61. with:
  62. actions: 'create-comment,close-issue'
  63. token: ${{ secrets.ADMIN_TOKEN }}
  64. issue-number: ${{ github.event.issue.number }}
  65. body: |
  66. Hello @${{ github.event.issue.user.login }}, your issue has been closed because it does not conform to our issue requirements. Please use the [Issue Helper](https://new-issue.go-admin.dev) to create an issue, thank you!
  67. 你好 @${{ github.event.issue.user.login }},为了能够进行高效沟通,我们对 issue 有一定的格式要求,你的 issue 因为不符合要求而被自动关闭。你可以通过 [issue 助手](https://new-issue.go-admin.dev) 来创建 issue 以方便我们定位错误。谢谢配合!
  68. - name: rtl
  69. if: github.event.label.name == 'rtl'
  70. uses: actions-cool/issues-helper@v3
  71. with:
  72. actions: 'add-assignees'
  73. assignees: 'xrkffgg'