Skip to content

Commit

Permalink
docs: fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
xrkffgg committed Dec 23, 2020
1 parent a5d0d75 commit a219a71
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 50 deletions.
50 changes: 25 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 🤖 Issue Helper
# 🤖 Issues Helper

English | [简体中文](./README.zh-CN.md)

[![](https://img.shields.io/github/workflow/status/actions-cool/issue-helper/ci?style=flat-square)](https://github.com/actions-cool/issue-helper/actions) [![](https://img.shields.io/github/stars/actions-cool/issue-helper?style=flat-square)](https://github.com/actions-cool/issue-helper/stargazers) [![](https://img.shields.io/github/v/release/actions-cool/issue-helper?style=flat-square)](https://github.com/actions-cool/issue-helper/releases) [![](https://img.shields.io/github/license/actions-cool/issue-helper?style=flat-square)](https://github.com/actions-cool/issue-helper/blob/main/LICENSE)
[![](https://img.shields.io/github/workflow/status/actions-cool/issues-helper/ci?style=flat-square)](https://github.com/actions-cool/issues-helper/actions) [![](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)](https://github.com/actions-cool/issues-helper/releases) [![](https://img.shields.io/github/license/actions-cool/issues-helper?style=flat-square)](https://github.com/actions-cool/issues-helper/blob/main/LICENSE)

A GitHub Action to help you deal with issues

Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add assigness
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'add-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
if: contains(github.event.issue.body, 'xxx') == false
steps:
- name: Add labels
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'add-labels'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -122,7 +122,7 @@ Close the specified issue.

```yml
- name: Close issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'close-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
if: github.event.label.name == 'xxx'
steps:
- name: Create comment
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'create-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -230,7 +230,7 @@ According to [`comment-id`](#comment-id) delete the specified comment.

```yml
- name: Delete comment
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'delete-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
if: github.event.label.name == 'invalid'
steps:
- name: Lock issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'lock-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -283,7 +283,7 @@ Open the specified issue.

```yml
- name: Open issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'open-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -304,7 +304,7 @@ Remove the person designated by issue.

```yml
- name: Remove assignees
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'remove-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -327,7 +327,7 @@ Replace the labels of issue.

```yml
- name: Set labels
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'set-labels'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -350,7 +350,7 @@ Unlock the specified issue.

```yml
- name: Unlock issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'unlock-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Update comment
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'update-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -411,7 +411,7 @@ Update the specified issue according to the `issue-number`.

```yml
- name: Update issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'update-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -463,7 +463,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check-inactive
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'check-inactive'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -507,7 +507,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: close-issues
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -540,7 +540,7 @@ Find the current warehouse issue No. 1, the creator is k and the content contain

```yml
- name: Find comments
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'find-comments'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -588,7 +588,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: lock-issues
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'lock-issues'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -638,7 +638,7 @@ jobs:
if: github.event.label.name == 'watch'
steps:
- name: find comments
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
id: fcid
with:
actions: 'find-comments'
Expand All @@ -649,7 +649,7 @@ jobs:
- name: create comment
if: ${{ steps.fcid.outputs.comments.length == 0 }}
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -658,7 +658,7 @@ jobs:
- name: update comment
if: ${{ steps.fcid.outputs.comments.length == 1 }}
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
with:
actions: 'update-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -690,7 +690,7 @@ When the token is not filled in actions or the corresponding secrets are not add

```yml
- name: Create issue
uses: actions-cool/issue-helper@v1
uses: actions-cool/issues-helper@v1
id: createissue
with:
actions: 'create-issue'
Expand Down Expand Up @@ -733,8 +733,8 @@ Click the `···` icon in the upper right corner of a comment, select `Copy lin

## 💖 Who are using?

You can come to the following reference template. Please leave a message at [**here** ](https://github.com/actions-cool/issue-helper/issues/6).
You can come to the following reference template. Please leave a message at [**here** ](https://github.com/actions-cool/issues-helper/issues/6).

## LICENSE

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

0 comments on commit a219a71

Please sign in to comment.