Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/actions-cool/issues-helper

๐Ÿค– A GitHub Action easily helps you automatically manage issues. Welcome to try.
https://github.com/actions-cool/issues-helper

actions helper issue issue-labels issues

Last synced: 5 days ago
JSON representation

๐Ÿค– A GitHub Action easily helps you automatically manage issues. Welcome to try.

Awesome Lists containing this project

README

        





๐Ÿค– Issues Helper

A GitHub Action that easily helps you automatically manage issues

[![](https://img.shields.io/github/actions/workflow/status/actions-cool/issues-helper/ci.yml?branch=main&style=flat-square)](https://github.com/actions-cool/issues-helper/actions)
[![](https://img.shields.io/badge/marketplace-issues--helper-red?style=flat-square)](https://github.com/marketplace/actions/issues-helper)
![](https://img.shields.io/github/languages/top/actions-cool/issues-helper?color=%2308979c&style=flat-square)
[![dumi](https://img.shields.io/badge/docs%20by-dumi-blue?style=flat-square)](https://github.com/umijs/dumi)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

[![](https://img.shields.io/github/stars/actions-cool/issues-helper?style=flat-square)](https://github.com/actions-cool/issues-helper/stargazers)
[![](https://img.shields.io/github/v/release/actions-cool/issues-helper?style=flat-square&color=orange)](https://github.com/actions-cool/issues-helper/releases)
[![](https://img.shields.io/badge/discussions-on%20github-blue?style=flat-square&color=%2308979c)](https://github.com/actions-cool/issues-helper/discussions)
[![](https://img.shields.io/github/license/actions-cool/issues-helper?style=flat-square)](https://github.com/actions-cool/issues-helper/blob/main/LICENSE)

English | [็ฎ€ไฝ“ไธญๆ–‡](README.zh-CN.md)

## ๐Ÿ”— Link

- [Online documentation](https://actions-cool.github.io/issues-helper)
- [Online v2 documentation](https://actions-cool.github.io/issues-helper-2.x/)
- [Changelog](./CHANGELOG.md)

## ๐Ÿ˜Ž Why use GitHub Action?

1. Complete free
2. Fully automatic
3. Hosted on the GitHub server, as long as GitHub is not down, it is not affected

> Private projects have a limit of 2000 times per month. [Specific view](https://github.com/settings/billing). Public are unlimited.

## Who is using?

Please leave a message at [**here**](https://github.com/actions-cool/issues-helper/issues/6).




















ant-design
ant-design-blazor
ant-design-mobile
ant-design-vue




















bootstrap
dumi
electron
element-plus




















formily
jsx-next
material-ui
naive-ui




















nutui
prettier
react-component
react-music-player




















S2
swiper
umi
vite




















vitest
vue-request
vuepress-next
zoo

## Badge

If you think `actions-cool` can help you, please copy it to the README to support promotion and bring convenience to more repositories:[![actions-cool](https://img.shields.io/badge/using-actions--cool-blue?style=flat-square)](https://github.com/actions-cool). [More color see](https://github.com/actions-cool/issues-helper/issues/92).

```
[![actions-cool](https://img.shields.io/badge/using-actions--cool-blue?style=flat-square)](https://github.com/actions-cool)
```

## โšก Feedback

You are very welcome to try it out and put forward your comments. You can use the following methods:

- Report bugs or consult with [Issue](https://github.com/actions-cool/issues-helper/issues)
- Discuss via [Discussions](https://github.com/actions-cool/issues-helper/discussions)
- Submit [Pull Request](https://github.com/actions-cool/issues-helper/pulls) to improve the code of `issues-helper`

## List

When the following list does not have the features you want, you can submit it in [issues](https://github.com/actions-cool/issues-helper/issues).

- โญ Base
- [`add-assignees`](#add-assignees)
- [`add-labels`](#add-labels)
- [`close-issue`](#close-issue)
- [`create-comment`](#create-comment)
- [`create-issue`](#create-issue)
- [`create-label`](#create-label)
- [`delete-comment`](#delete-comment)
- [`get-issue`](#get-issue)
- [`lock-issue`](#lock-issue)
- [`open-issue`](#open-issue)
- [`remove-assignees`](#remove-assignees)
- [`remove-labels`](#remove-labels)
- [`set-labels`](#set-labels)
- [`unlock-issue`](#unlock-issue)
- [`update-comment`](#update-comment)
- [`update-issue`](#update-issue)
- ๐ŸŒŸ Advanced
- [`check-inactive`](#check-inactive)
- [`check-issue`](#check-issue)
- [`close-issues`](#close-issues)
- [`find-comments`](#find-comments)
- [`find-issues`](#find-issues)
- [`lock-issues`](#lock-issues)
- [`mark-assignees`](#mark-assignees)
- [`mark-duplicate`](#mark-duplicate)
- [`toggle-labels`](#toggle-labels)
- [`welcome`](#welcome)

## ๐Ÿš€ Usage

### โญ Base

In order to better display the function, the following is an example of the actual scene, please refer to it flexibly.

#### `add-assignees`

When an issue is added or modified, assign this issue to one or more people.

```yml
name: Add Assigness

on:
issues:
types: [opened, edited]

jobs:
add-assigness:
runs-on: ubuntu-latest
steps:
- name: Add assigness
uses: actions-cool/issues-helper@v3
with:
actions: 'add-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
assignees: 'xxx' or 'xx1,xx2'
random-to: 1
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| assignees | Designated person. No operation when no input or empty character | string | โœ– |
| random-to | When set, it will be randomly selected in assignees | number | โœ– |

- `actions` support multiple and separated by comma. Like: `add-assignees,add-labels`
- The `name` can be modified according to the actual situation
- [Reference to on](#github-docs)
- `${{ github.event.issue.number }}` is the current issue. [More references](https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events)
- `assignees` support multiple and separated by comma
- You can assign up to 10 people to each issue

[โซ Back to list](#List)

#### `add-labels`

When the content of a new issue does not contain the specified format, add labels for the issue.

```yml
name: Add Labels

on:
issues:
types: [opened]

jobs:
add-labels:
runs-on: ubuntu-latest
if: contains(github.event.issue.body, 'xxx') == false
steps:
- name: Add labels
uses: actions-cool/issues-helper@v3
with:
actions: 'add-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'bug' or 'xx1,xx2'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| labels | New labels. When it is not filled in or is empty character, do not add | string | โœ– |

- `labels` support multiple and separated by comma

[โซ Back to list](#List)

#### `close-issue`

Close the specified issue.

```yml
- name: Close issue
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: xxx
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| close-reason | Reason for closing. Default `not_planned`, another `completed` | string | โœ– |

[โซ Back to list](#List)

#### `create-comment`

When a designated label is added, comment on the issue.

```yml
name: Create Comment

on:
issues:
types: [labeled]

jobs:
create-comment:
runs-on: ubuntu-latest
if: github.event.label.name == 'xxx'
steps:
- name: Create comment
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Hello @${{ github.event.issue.user.login }}. Add some comments.

ไฝ ๅฅฝ @${{ github.event.issue.user.login }}ใ€‚ๅทดๆ‹‰ๅทดๆ‹‰ใ€‚
emoji: '+1' or '+1,heart'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| body | Add comment content | string | โœ” |
| emoji | Add [emoji](#emoji-types) | string | โœ– |

- No action when `body` is empty
- Return `comment-id`, which can be used for subsequent operations. [Usage reference](#outputs-use)
- `${{ github.event.issue.user.login }}` indicates the creator of the issue
- `emoji` support multiple and separated by comma

[โซ Back to list](#List)

#### `create-issue`

Here is an example, add an issue at UTC 00:00 on the 1st of every month.

```yml
name: Create Issue

on:
schedule:
- cron: "0 0 1 * *"

jobs:
create-issue:
runs-on: ubuntu-latest
steps:
- name: Create issue
uses: actions-cool/issues-helper@v3
with:
actions: 'create-issue'
token: ${{ secrets.GITHUB_TOKEN }}
title: 'xxxx'
body: 'xxxx'
labels: 'xx'
assignees: 'xxx'
emoji: '+1'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| title | The title of the new issue | string | โœ” |
| body | The body of the new issue | string | โœ– |
| labels | The labels for the new issue | string | โœ– |
| assignees | The assignees for the new issue | string | โœ– |
| random-to | When set, it will be randomly selected in assignees | number | โœ– |
| emoji | Add [emoji](#emoji-types) | string | โœ– |

- No action when `title` is empty
- Return `issue-number`. [Usage reference](#outputs-use)

[โซ Back to list](#List)

#### `create-label`

Create label. If you want to maintain labels in batches, [see](https://github.com/actions-cool/labels-helper).

```yml
- name: Create label
uses: actions-cool/issues-helper@v3
with:
actions: 'create-label'
token: ${{ secrets.GITHUB_TOKEN }}
label-name: 'xx'
label-color: '0095b3'
label-desc: 'xx'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| label-name | Label name, emoji support | string | โœ” |
| label-color | Label color, the format is hexadecimal color code, without `#` | string | โœ– |
| label-desc | Label description | string | โœ– |

- `label-name`: If it already exists, no operation
- `label-color`: Default is `ededed`

[โซ Back to list](#List)

#### `delete-comment`

According to [`comment-id`](#comment-id) delete the specified comment.

```yml
- name: Delete comment
uses: actions-cool/issues-helper@v3
with:
actions: 'delete-comment'
token: ${{ secrets.GITHUB_TOKEN }}
comment-id: xxx
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| comment-id | The comment ID | number | โœ” |

[โซ Back to list](#List)

#### `get-issue`

Query issue information.

```yml
- name: Get Issue
uses: actions-cool/issues-helper@v3
with:
actions: 'get-issue'
token: ${{ secrets.GITHUB_TOKEN }}
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |

- Return `issue-number` `issue-title` `issue-body` `issue-labels` `issue-assignees` `issue-state`. [Usage reference](#outputs-use)

[โซ Back to list](#List)

#### `lock-issue`

When the `invalid` label is added, the issue is locked.

```yml
name: Lock Issue

on:
issues:
types: [labeled]

jobs:
lock-issue:
runs-on: ubuntu-latest
if: github.event.label.name == 'invalid'
steps:
- name: Lock issue
uses: actions-cool/issues-helper@v3
with:
actions: 'lock-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| lock-reason | Reason for locking issue | string | โœ– |

- `lock-reason`: Optional values are `off-topic` `too heated` `resolved` `spam`

[โซ Back to list](#List)

#### `open-issue`

Open the specified issue.

```yml
- name: Open issue
uses: actions-cool/issues-helper@v3
with:
actions: 'open-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: xxx
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |

[โซ Back to list](#List)

#### `remove-assignees`

Remove the person designated by issue.

```yml
- name: Remove assignees
uses: actions-cool/issues-helper@v3
with:
actions: 'remove-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
assignees: 'xx'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| assignees | Designated person removed. When it is an empty character, do not remove | string | โœ” |

[โซ Back to list](#List)

#### `remove-labels`

Remove the specified labels.

```yml
- name: Remove labels
uses: actions-cool/issues-helper@v3
with:
actions: 'remove-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'xx'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| labels | The removed labels. When it is a blank character, do not remove | string | โœ” |

- `labels` supports multiple, such as `x1,x2,x3`, only the labels added by the issue will be removed

[โซ Back to list](#List)

#### `set-labels`

Replace the labels of issue.

```yml
- name: Set labels
uses: actions-cool/issues-helper@v3
with:
actions: 'set-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'xx'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| labels | labels set. When empty characters, will remove all | string | โœ” |

[โซ Back to list](#List)

#### `unlock-issue`

Unlock the specified issue.

```yml
- name: Unlock issue
uses: actions-cool/issues-helper@v3
with:
actions: 'unlock-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |

[โซ Back to list](#List)

#### `update-comment`

Update the specified comment according to [`comment-id`](#comment-id).

The following example shows that ๐Ÿ‘€ is added for each new comment.

```yml
name: Add eyes to each comment

on:
issue_comment:
types: [created]

jobs:
update-comment:
runs-on: ubuntu-latest
steps:
- name: Update comment
uses: actions-cool/issues-helper@v3
with:
actions: 'update-comment'
token: ${{ secrets.GITHUB_TOKEN }}
comment-id: ${{ github.event.comment.id }}
emoji: 'eyes'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| comment-id | The comment ID | number | โœ” |
| out-comments | The output of `find-comments`, if you find multiple, operate multiple | string | โœ– |
| body | Update the content of comment | string | โœ– |
| update-mode | Update mode. Default `replace`, another `append` | string | โœ– |
| emoji | Add [reaction](#emoji-types) | string | โœ– |

- When `body` is not entered, it will remain as it is
- When `update-mode` is `append`, additional operations will be performed. Anything other than `append` will be replaced. Only effective for `body`

[โซ Back to list](#List)

#### `update-issue`

Update the specified issue according to the `issue-number`.

```yml
- name: Update issue
uses: actions-cool/issues-helper@v3
with:
actions: 'update-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
state: 'open'
title: 'xxx'
body: 'xxxx'
update-mode: 'replace'
labels: 'xx'
assignees: 'xxx'
emoji: '+1'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| state | Modify the status of issue, optional value `open` `closed` | string | โœ– |
| title | Modify the title of the issue | string | โœ– |
| body | Modify the content of issue | string | โœ– |
| update-mode | Update mode. Default `replace`, another `append` | string | โœ– |
| labels | Replace the labels of issue | string | โœ– |
| assignees | Replace the assignees of issue | string | โœ– |
| emoji | Add [reaction](#emoji-types) | string | โœ– |

- `state` defaults to `open`
- When the option is not filled, it will keep the original

[โซ Back to list](#List)

### ๐ŸŒŸ Advanced

Advanced usage is not recommended to use multiple actions at the same time.

#### `check-inactive`

At UTC 0 on the 1st of each month, add the `inactive` tag to all issues that have not been active for more than 30 days.

```yml
name: Check inactive

on:
schedule:
- cron: "0 0 1 * *"

jobs:
check-inactive:
runs-on: ubuntu-latest
steps:
- name: check-inactive
uses: actions-cool/issues-helper@v3
with:
actions: 'check-inactive'
token: ${{ secrets.GITHUB_TOKEN }}
inactive-day: 30
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| body | When operating an issue, you can comment. Do not comment when not typing | string | โœ– |
| emoji | Add [reaction](#emoji-types) for this comment | string | โœ– |
| labels | Labels filtering | string | โœ– |
| issue-state | State filtering | string | โœ– |
| issue-assignee | Assignee filtering | string | โœ– |
| issue-creator | Creator filtering | string | โœ– |
| issue-mentioned | Mentioned filtering | string | โœ– |
| body-includes | Body filtering | string | โœ– |
| title-includes | Title filtering | string | โœ– |
| inactive-day | Inactive days filtering | number | โœ– |
| inactive-mode | Detect inactive mode, default `issue` | string | โœ– |
| inactive-label | The label name adding | string | โœ– |
| exclude-labels | Exclude labels filtering | string | โœ– |

- `labels`: When there are multiple, the query will have multiple at the same time. If not entered, all
- `issue-state`: The default is `all`. Optional value `open` `closed`, when these 2 items are not, both are `all`
- `issue-assignee`: Multiplayer is not supported. If you do not enter or enter *, all will be searched. Entering `none` will query issues for which the specified person is not added
- `inactive-day`: When entering, it will filter the issue update time earlier than the current time minus the number of inactive days. If not entered, all
- `inactive-label`: The default is `inactive`, others can be customized. When the project does not contain the label, it will be created automatically
- `exclude-labels`: When set to include `$exclude-empty`, no label issue can be excluded
- `inactive-mode`:
- Default `issue`: the issue updated time
- Optional `comment`: the last comment update time
- Optional `issue-created`: the issue created time
- Optional `comment-created`: the comment creation time
- You can also set multiple such as: `comment, issue-created`
- It will be detected with priority, the update time of the last comment will be detected first, if there is no comment, the creation time of the issue will be used

[โซ Back to list](#List)

#### `check-issue`

Check whether the issue meets the conditions according to the passed parameters and `issue-number`, and return a boolean value.

The effect of the following example is: when an issue is newly opened, verify whether the current issue designator contains `x1` or `x2`.

If one designated person is satisfied, the verification will pass, and at the same time, verify whether the title meets the conditions. [Check rules](#check-rules)

```yml
name: Check Issue

on:
issues:
types: [edited]

jobs:
check-issue:
runs-on: ubuntu-latest
steps:
- name: check-issue
uses: actions-cool/issues-helper@v3
with:
actions: 'check-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
assignee-includes: 'x1,x2'
title-includes: 'x1,x2/y1,y2'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| assignee-includes | Assignees contains check | string | โœ– |
| title-includes | Title contains check | string | โœ– |
| title-excludes | Check whether the title is empty after removing the default title | string | โœ– |
| body-includes | Body contains check | string | โœ– |

- `title-includes` `body-includes` supports the format `x1,x2` or `x1,x2/y1,y2`. Only supports two levels
- Return `check-result`, due to yml reasons, the judgment condition is `if: steps.xxid.outputs.check-result =='true'`

[โซ Back to list](#List)

#### `close-issues`

Every 7 days at UTC 0, close the issues that have been filled with the `need info` label and have not been active for more than 7 days.

```yml
name: Check need info

on:
schedule:
- cron: "0 0 */7 * *"

jobs:
check-need-info:
runs-on: ubuntu-latest
steps:
- name: close-issues
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: 'need info'
inactive-day: 7
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| body | When operating an issue, you can comment. Do not comment when not typing | string | โœ– |
| emoji | Add [reaction](#emoji-types) for this comment | string | โœ– |
| labels | Labels filtering | string | โœ– |
| issue-assignee | Assignee filtering | string | โœ– |
| issue-creator | Creator filtering | string | โœ– |
| issue-mentioned | Mentioned filtering | string | โœ– |
| body-includes | Body filtering | string | โœ– |
| title-includes | Title filtering | string | โœ– |
| inactive-day | Inactive days filtering | number | โœ– |
| exclude-labels | Exclude labels filtering | string | โœ– |
| close-reason | Reason for closing. Default `not_planned`, another `completed` | string | โœ– |

- `labels`: When there are multiple, the query will have multiple at the same time. If not entered, all
- `issue-assignee`: Multiplayer is not supported. If you do not enter or enter *, all will be searched. Entering `none` will query issues for which the specified person is not added
- `inactive-day`: When entering, it will filter the issue update time earlier than the current time minus the number of inactive days. If not entered, all
- `exclude-labels`: When set to include `$exclude-empty`, no label issue can be excluded

[โซ Back to list](#List)

#### `find-comments`

Find the current warehouse issue No. 1, the creator is k and the content contains the comment list of `this`.

```yml
- name: Find comments
uses: actions-cool/issues-helper@v3
with:
actions: 'find-comments'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: 1
comment-auth: 'k'
body-includes: 'this'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| comment-auth | Comment creator, all will be queried if not filled | string | โœ– |
| body-includes | Comment content includes filtering, no verification if not filled | string | โœ– |
| direction | Return `comments` sort | string | โœ– |

- Return `comments` in the following format:

```js
[
{id: 1, auth: 'x', body: 'xxx', created: '', updated: ''},
{id: 2, auth: 'x', body: 'xxx', created: '', updated: ''},
]
```

- `direction` defaults to ascending order, only when `desc` is set, descending order will be returned
- The `created` `updated` in the returned array, determined by the environment, will be UTC +0

[โซ Back to list](#List)

#### `find-issues`

Find the current repository, the creator is k , the title contains `this` , the body contains `that`, and the list of issues in the open state.

```yml
- name: Find issues
uses: actions-cool/issues-helper@v3
with:
actions: 'find-issues'
token: ${{ secrets.GITHUB_TOKEN }}
issue-creator: 'k'
issue-state: 'open'
title-includes: 'this'
body-includes: 'that'
labels: 'documentation'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-state | State filtering | string | โœ– |
| issue-creator | Creator filtering | string | โœ– |
| title-includes | Title filtering | string | โœ– |
| body-includes | Body filtering | string | โœ– |
| labels | Labels filtering | string | โœ– |
| exclude-labels | Exclude labels filtering | string | โœ– |
| inactive-day | Inactive days filtering | number | โœ– |
| direction | Return sort | string | โœ– |

- Returns `issues` in the following format:

```js
[
{number: 1, auth: 'x', body: 'xxx', body: 'xxx', state: 'open', assignees: ['x1', 'x2'], created: '', updated: ''},
{number: 2, auth: 'x', body: 'xxx', body: 'xxx', state: 'closed', assignees: ['x1', 'x2'], created: '', updated: ''},
]
```

- `issue-state`: The default is `open`. Other values are: `closed`, `all`
- `direction` defaults to ascending order, only when `desc` is set, descending order will be returned
- The `created` `updated` in the returned array, determined by the environment, will be UTC +0
- `exclude-labels`: When set to include `$exclude-empty`, no label issue can be excluded

[โซ Back to list](#List)

#### `lock-issues`

Every 3 months at UTC 0 on the 1st, lock all issues that have been filled with the `inactive` label and have not been active for more than 128 days.

```yml
name: Lock inactive issues

on:
schedule:
- cron: "0 0 1 */3 *"

jobs:
lock-issues:
runs-on: ubuntu-latest
steps:
- name: lock-issues
uses: actions-cool/issues-helper@v3
with:
actions: 'lock-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: 'inactive'
inactive-day: 128
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| body | When operating an issue, you can comment. Do not comment when not typing | string | โœ– |
| emoji | Add [reaction](#emoji-types) for this comment | string | โœ– |
| labels | Labels filtering | string | โœ– |
| issue-state | State filtering | string | โœ– |
| issue-assignee | Assignee filtering | string | โœ– |
| issue-creator | Creator filtering | string | โœ– |
| issue-mentioned | Mentioned filtering | string | โœ– |
| body-includes | Body filtering | string | โœ– |
| title-includes | Title filtering | string | โœ– |
| inactive-day | Inactive days filtering | number | โœ– |
| lock-reason | Reason for locking issue | string | โœ– |
| exclude-labels | Exclude labels filtering | string | โœ– |

- `labels`: When there are multiple, the query will have multiple at the same time. If not entered, all
- `issue-state`: The default is `all`. Optional value `open` `closed`, when these 2 items are not, both are `all`
- `issue-assignee`: Multiplayer is not supported. If you do not enter or enter *, all will be searched. Entering `none` will query issues for which the specified person is not added
- `inactive-day`: When entering, it will filter the issue update time earlier than the current time minus the number of inactive days. If not entered, all
- `exclude-labels`: When set to include `$exclude-empty`, no label issue can be excluded

[โซ Back to list](#List)

#### `mark-assignees`

Quickly assign person, only for the issue to add editor comments.

```yml
name: Issue Mark Assignees

on:
issue_comment:
types: [created, edited]

jobs:
mark-assignees:
runs-on: ubuntu-latest
steps:
- name: mark-assignees
uses: actions-cool/issues-helper@v3
with:
actions: 'mark-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| assign-command | Simple commands can be set, such as: `/a` | string | โœ– |
| require-permission | Permission required, default is `write` | string | โœ– |

- `assign-command`: default `/assign`
- `require-permission`: Optional values are `admin`, `write`, `read`, `none`
- If the team member sets the `read` permission, it is `read`
- If the external Collaborator is set to `read` permission, it is `read`
- Ordinary users have `read` permission
- When set `write`, `admin` and `write` meet the conditions

[โซ Back to list](#List)

#### `mark-duplicate`

Quickly mark duplicate questions, only for issue new comments or edit comments.

```yml
name: Issue Mark Duplicate

on:
issue_comment:
types: [created, edited]

jobs:
mark-duplicate:
runs-on: ubuntu-latest
steps:
- name: mark-duplicate
uses: actions-cool/issues-helper@v3
with:
actions: 'mark-duplicate'
token: ${{ secrets.GITHUB_TOKEN }}
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| duplicate-command | Simple commands can be set, such as: `/d` | string | โœ– |
| duplicate-labels | Add additional labels to this issue | string | โœ– |
| remove-labels | Set removable labels | string | โœ– |
| labels | Replace the labels of the issue | string | โœ– |
| emoji | Add [reaction](#emoji-types) for this comment | string | โœ– |
| close-issue | Whether to close the issue at the same time | string | โœ– |
| require-permission | Permission required, default is `write` | string | โœ– |
| close-reason | Reason for closing. Default `not_planned`, another `completed` | string | โœ– |

- `duplicate-command`: When setting concise commands, while still supporting the original `Duplicate of`. Block content contains `?`
- `labels`: Highest priority
- `close-issue`: Both `true` or `'true'` can take effect
- `require-permission`: Optional values are `admin`, `write`, `read`, `none`
- If the team member sets the `read` permission, it is `read`
- If the external Collaborator is set to `read` permission, it is `read`
- Ordinary users have `read` permission
- When set `write`, `admin` and `write` meet the conditions

[โซ Back to list](#List)

#### `toggle-labels`

When an issue is reopened, the set labels are removed if they already exist, otherwise they are added.

```yml
name: Toggle Labels

on:
issues:
types: [reopened]

jobs:
toggle-labels:
runs-on: ubuntu-latest
steps:
- name: Toggle labels
uses: actions-cool/issues-helper@v3
with:
actions: 'toggle-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'unread,outdated'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| issue-number | The number of issue. When not input, it will be obtained from the trigger event | number | โœ– |
| labels | The toggle labels. Delete if the label already exists, add if it does not exist | string | โœ– |

[โซ Back to list](#List)

#### `welcome`

When an issue is created, the user who created the issue for the first time is welcome.

If the user is not creating for the first time, there is no operation.

```yml
name: Issue Welcome

on:
issues:
types: [opened]

jobs:
issue-welcome:
runs-on: ubuntu-latest
steps:
- name: welcome
uses: actions-cool/issues-helper@v3
with:
actions: 'welcome'
token: ${{ secrets.GITHUB_TOKEN }}
body: hi @${{ github.event.issue.user.login }}, welcome!
labels: 'welcome1, welcome2'
assignees: 'xx1'
issue-emoji: '+1, -1, eyes'
```

| Param | Desc | Type | Required |
| -- | -- | -- | -- |
| actions | Action type | string | โœ” |
| token | [Token explain](#token) | string | โœ– |
| body | Comment on the welcome content, no comment if you leave it blank | string | โœ– |
| labels | Add labels to this issue | string | โœ– |
| assignees | Add assignees to this issue | string | โœ– |
| issue-emoji | Add [reaction](#emoji-types) to this issue| string | โœ– |

- If these 4 options are not filled, no operation

[โซ Back to list](#List)

## ๐ŸŽ Reference

### token

Need to have the person token with push permission.

- [Personal token application](https://github.com/settings/tokens)
- Need to check `Full control of private repositories`
- Project add secrets
- Select settings, select secrets, select `New repository secret`
- `Name` is the same as in actions
- `Value` fill in the token just applied by the individual

When the token is not filled in actions or input `${{ secrets.GITHUB_TOKEN }}`, it will default to `github-actions-bot`. [More](https://docs.github.com/en/free-pro-team@latest/actions/reference/authentication-in-a-workflow).

[โซ Back to list](#List)

### GitHub Docs

- [Workflow syntax for GitHub Actions](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#on)
- [Events that trigger workflows](https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows)

[โซ Back to list](#List)

### `outputs` use

```yml
- name: Create issue
uses: actions-cool/issues-helper@v3
id: createissue
with:
actions: 'create-issue'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check outputs
run: echo "Outputs issue_number is ${{ steps.createissue.outputs.issue-number }}"
```

More:

1. https://docs.github.com/en/free-pro-team@latest/actions/creating-actions/metadata-syntax-for-github-actions#outputs
2. https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idoutputs

[โซ Back to list](#List)

### Check rules

```js
"title-includes": 'x1,x2'

x1
x2

"x1y3y2" true
"y2 x1" true
"x2" true
"x3" false
```

```js
"title-includes": 'x1,x2/y1,y2'

x1 + y1
x2 + y1
x1 + y2
x2 + y2

"x1y3y2" true
"y2 x1" true
"1x2y" false
"x1" false
```

[โซ Back to list](#List)
### Emoji types

| content | emoji |
| -- | -- |
| `+1` | ๐Ÿ‘ |
| `-1` | ๐Ÿ‘Ž |
| `laugh` | ๐Ÿ˜„ |
| `confused` | ๐Ÿ˜• |
| `heart` | โค๏ธ |
| `hooray` | ๐ŸŽ‰ |
| `rocket` | ๐Ÿš€ |
| `eyes` | ๐Ÿ‘€ |

[โซ Back to list](#List)

### `comment-id`

Click the `ยทยทยท` icon in the upper right corner of a comment, select `Copy link`, and the number at the end of the url is `comment_id`.

[โซ Back to list](#List)

## Actions Template

- You can directly use this [GitHub Actions workflow template](https://github.com/actions-cool/.github) repositorie template
- Personal exercises and tests [Actions](https://github.com/actions-cool/test-issues-helper) repository
- Can also refer to the warehouse of [online users](#who-is-using)

## LICENSE

[MIT](https://github.com/actions-cool/issues-helper/blob/main/LICENSE)