├── README.md └── .github ├── ISSUE_TEMPLATE ├── feature_request.md └── bug_report.md └── workflows └── add-label.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xwudao/reman-release/HEAD/README.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 功能请求 3 | about: 使用此模板来提交一个功能请求。 4 | title: '【FEAT】这里添加简要描述' 5 | labels: ['feat'] 6 | --- 7 | 8 | # 功能请求 9 | 10 | ## 你期望添加什么样的功能? 11 | 12 | **请注意** 13 | 14 | ReMan定位是一个入库及搜索工具,不要提交类似: 15 | 16 | ``` 17 | 这个论坛有这个功能,你们也加上吧 18 | 那个网站有这个功能,你们也加上吧 19 | ``` 20 | 21 | 禁忌:不要带爬虫、爬取等字眼 22 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug 提交 3 | about: 使用此模板来提交一个 bug 4 | title: '【BUG】这里添加简要描述' 5 | labels: ['bug'] 6 | --- 7 | 8 | # BUG 提交 9 | 10 | ## 描述该错误 11 | 12 | 简明扼要地描述一下这个错误是什么。 13 | 可以添加屏幕截图以帮助解释你的问题。 14 | 禁忌:不要带爬虫、爬取等字眼 15 | 16 | ## 复现 17 | 18 | 这个 BUG 的复现步骤: 19 | 20 | 1. ... 21 | 2. ... 22 | 3. ... 23 | ... 24 | 或者添加录屏链接 25 | 26 | ## 运行结果 27 | 28 | 预期的结果: 29 | ... ... 30 | 31 | 实际的结果: 32 | ... ... 33 | 34 | ## 运行环境信息 35 | 36 | - ReMan 版本: 37 | 38 | [eg: v0.8.8] 39 | 40 | - 操作系统: 41 | 42 | [eg: Ubuntu 20.04 LTS] 43 | 44 | ## 其它 45 | 46 | 在此添加关于问题的任何其它信息。 47 | -------------------------------------------------------------------------------- /.github/workflows/add-label.yml: -------------------------------------------------------------------------------- 1 | name: add label of non_standard Issue 2 | 3 | on: 4 | issues: 5 | types: [opened, edited] 6 | 7 | jobs: 8 | check-issue: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - id: check-issue # 必须使用id,不然不能访问到运行结果 12 | uses: actions-cool/issues-helper@v3 13 | with: 14 | actions: "check-issue" 15 | token: ${{ secrets.GITHUB_TOKEN }} 16 | issue-number: ${{ github.event.issue.number }} 17 | title-includes: "【,BUG,】" # 标题包含['【','BUG','】'] 18 | body-includes: "问题描述,问题复现步骤" # 内容包含 ['问题描述','问题复现步骤'] 19 | - name: add-label 20 | uses: actions-cool/issues-helper@v3 21 | if: ${{steps.check-issue.outputs.check-result == 'true'}} # 如果判断条件是 'true', 继续运行 22 | with: 23 | actions: "add-labels" 24 | token: ${{ secrets.GITHUB_TOKEN }} 25 | issue-number: ${{ github.event.issue.number }} # 当前Issue的编号 26 | labels: "bug" # 添加标签: 'bug' 27 | --------------------------------------------------------------------------------