进阶用法不建议 actions 多个一次同时使用。
check-inactive每月 1 号 UTC 0 时,对所有 30 天以上未活跃的 issues 增加 inactive 标签。
name: Check inactiveon:schedule:- cron: "0 0 1 * *"jobs:check-inactive:runs-on: ubuntu-lateststeps:- name: check-inactiveuses: actions-cool/issues-helper@v2with:actions: 'check-inactive'token: ${{ secrets.GITHUB_TOKEN }}inactive-day: 30
| 参数 | 描述 | 类型 | 必填 |
|---|---|---|---|
| actions | 操作类型 | string | ✔ |
| token | token 说明 | string | ✔ |
| body | 操作 issue 时,可进行评论。不填时,不评论 | string | ✖ |
| contents | 为该评论增加 reaction | string | ✖ |
| labels | 标签筛选 | string | ✖ |
| issue-state | 状态筛选 | string | ✖ |
| issue-assignee | 指定人筛选 | string | ✖ |
| issue-creator | 创建人筛选 | string | ✖ |
| issue-mentioned | 提及人筛选 | string | ✖ |
| body-includes | 包含内容筛选 | string | ✖ |
| title-includes | 包含标题筛选 | string | ✖ |
| inactive-day | 非活跃天数筛选 | number | ✖ |
| inactive-label | 新增标签名称 | string | ✖ |
| exclude-labels | 排除标签筛选 | string | ✖ |
labels:为多个时,会查询同时拥有多个。不填时,会查询所有issue-state:默认为 all。可选值 open closed,非这 2 项时,均为 allissue-assignee:不支持多人。不填或输入 * 时,查询所有。输入 none 会查询未添加指定人的 issuesinactive-day:当输入时,会筛选 issue 更新时间早于当前时间减去非活跃天数。不填时,会查询所有inactive-label:默认为 inactive,可自定义其他。当项目未包含该 label 时,会自动新建check-issue根据传入的参数和 issue-number 来检查该 issue 是否满足条件,返回一个布尔值。
下面的例子效果是:当 issue 新开时,校验当前 issue 指定人是否包含 x1 或者 x2,满足一个指定人即可校验通过,同时校验标题是否满足条件,校验规则。
name: Check Issueon:issues:types: [edited]jobs:check-issue:runs-on: ubuntu-lateststeps:- name: check-issueuses: actions-cool/issues-helper@v2with:actions: 'check-issue'token: ${{ secrets.GITHUB_TOKEN }}issue-number: ${{ github.event.issue.number }}assignee-includes: 'x1,x2'title-includes: 'x1,x2/y1,y2'
| 参数 | 描述 | 类型 | 必填 |
|---|---|---|---|
| actions | 操作类型 | string | ✔ |
| token | token 说明 | string | ✔ |
| issue-number | 指定的 issue,当不传时会从触发事件中获取 | number | ✖ |
| assignee-includes | 是否包含指定人 | string | ✖ |
| title-includes | 标题包含校验 | string | ✖ |
| title-excludes | 检测标题移除默认 title 后是否为空 | string | ✖ |
| body-includes | 内容包含校验 | string | ✖ |
title-includes body-includes 支持格式 x1,x2 或者 x1,x2/y1,y2。只支持两个层级check-result,由于 yml 原因,判断条件为 if: steps.xxid.outputs.check-result == 'true'close-issues每 7 天 UTC 0 时,关闭已填加 need info label 且 7 天以上未活跃的 issues。
name: Check need infoon:schedule:- cron: "0 0 */7 * *"jobs:check-need-info:runs-on: ubuntu-lateststeps:- name: close-issuesuses: actions-cool/issues-helper@v2with:actions: 'close-issues'token: ${{ secrets.GITHUB_TOKEN }}labels: 'need info'inactive-day: 7
| 参数 | 描述 | 类型 | 必填 |
|---|---|---|---|
| actions | 操作类型 | string | ✔ |
| token | token 说明 | string | ✔ |
| body | 操作 issue 时,可进行评论。不填时,不评论 | string | ✖ |
| contents | 为该评论增加 reaction | string | ✖ |
| labels | 标签筛选 | string | ✖ |
| issue-assignee | 指定人筛选 | string | ✖ |
| issue-creator | 创建人筛选 | string | ✖ |
| issue-mentioned | 提及人筛选 | string | ✖ |
| body-includes | 包含内容筛选 | string | ✖ |
| title-includes | 包含标题筛选 | string | ✖ |
| inactive-day | 非活跃天数筛选 | number | ✖ |
| exclude-labels | 排除标签筛选 | string | ✖ |
labels:为多个时,会查询同时拥有多个。不填时,会查询所有issue-assignee:不支持多人。不填或输入 * 时,查询所有。输入 none 会查询未添加指定人的 issuesinactive-day:当输入时,会筛选 issue 更新时间早于当前时间减去非活跃天数。不填时,会查询所有find-comments查找当前仓库 1 号 issue 中,创建者是 k ,内容包含 this 的评论列表。
- name: Find commentsuses: actions-cool/issues-helper@v2with:actions: 'find-comments'token: ${{ secrets.GITHUB_TOKEN }}issue-number: 1comment-auth: 'k'body-includes: 'this'
| 参数 | 描述 | 类型 | 必填 |
|---|---|---|---|
| actions | 操作类型 | string | ✔ |
| token | token 说明 | string | ✔ |
| issue-number | 指定的 issue,当不传时会从触发事件中获取 | number | ✖ |
| comment-auth | 评论创建者,不填时会查询所有 | string | ✖ |
| body-includes | 评论内容包含过滤,不填时无校验 | string | ✖ |
| direction | 返回 comments 排序 | string | ✖ |
comments,格式如下:[{id: 1, auth: 'x', body: 'xxx', created: '', updated: ''},{id: 2, auth: 'x', body: 'xxx', created: '', updated: ''},]
direction 默认为升序,只有设置 desc 时,会返回降序created updated,由所处环境决定,会是 UTC +0lock-issues每 3 个月 1 号 UTC 0 时,锁定已填加 inactive label 且 128 天以上未活跃的所有 issues。
name: Lock inactive issueson:schedule:- cron: "0 0 1 */3 *"jobs:lock-issues:runs-on: ubuntu-lateststeps:- name: lock-issuesuses: actions-cool/issues-helper@v2with:actions: 'lock-issues'token: ${{ secrets.GITHUB_TOKEN }}labels: 'inactive'inactive-day: 128
| 参数 | 描述 | 类型 | 必填 |
|---|---|---|---|
| actions | 操作类型 | string | ✔ |
| token | token 说明 | string | ✔ |
| body | 操作 issue 时,可进行评论。不填时,不评论 | string | ✖ |
| contents | 为该评论增加 reaction | string | ✖ |
| labels | 标签筛选 | string | ✖ |
| issue-state | 状态筛选 | string | ✖ |
| issue-assignee | 指定人筛选 | string | ✖ |
| issue-creator | 创建人筛选 | string | ✖ |
| issue-mentioned | 提及人筛选 | string | ✖ |
| body-includes | 包含内容筛选 | string | ✖ |
| title-includes | 包含标题筛选 | string | ✖ |
| inactive-day | 非活跃天数筛选 | number | ✖ |
| lock-reason | 锁定 issue 的原因 | string | ✖ |
| exclude-labels | 排除标签筛选 | string | ✖ |
labels:为多个时,会查询同时拥有多个。不填时,会查询所有issue-state:默认为 all。可选值 open closed,非这 2 项时,均为 allissue-assignee:不支持多人。不填或输入 * 时,查询所有。输入 none 会查询未添加指定人的 issuesinactive-day:当输入时,会筛选 issue 更新时间早于当前时间减去非活跃天数。不填时,会查询所有month-statistics每月 1 号 1 时,生成一个 issue 上月统计。
name: Issue Month Statisticson:schedule:- cron: "0 1 1 * *"jobs:month-statistics:runs-on: ubuntu-lateststeps:- name: month-statisticsuses: actions-cool/issues-helper@v2with:actions: 'month-statistics'token: ${{ secrets.GITHUB_TOKEN }}count-lables: 'true'
| 参数 | 描述 | 类型 | 必填 |
|---|---|---|---|
| actions | 操作类型 | string | ✔ |
| token | token 说明 | string | ✔ |
| labels | 为新增 issue 添加 labels | string | ✖ |
| assignees | 为新增 issue 添加 assignees | string | ✖ |
| count-lables | 新增 issue 是否统计 labels | string | ✖ |
| count-comments | 新增 issue 是否统计 comments | string | ✖ |
issue 的标题默认为 [当前仓库] Month Statistics: 年-月count-lables:可设置 'true',增加 labels 统计count-comments:可设置 'true',增加 comments 统计如下所示:
