Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: list comment page lost in [find-comments] #66

Merged
merged 2 commits into from
Mar 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v2.2.1

`2021.03.21`

- fix: list comment page lost in `find-comments`. [#66](https://github.com/actions-cool/issues-helper/pull/66)

## v2.2.0

`2021.03.21`
Expand Down
54 changes: 27 additions & 27 deletions README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add assigness
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'add-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
if: contains(github.event.issue.body, 'xxx') == false
steps:
- name: Add labels
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'add-labels'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -237,7 +237,7 @@ Close the specified issue.

```yml
- name: Close issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'close-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
if: github.event.label.name == 'xxx'
steps:
- name: Create comment
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'create-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -347,7 +347,7 @@ Create label. If you want to maintain labels in batches, [see](https://github.co

```yml
- name: Create label
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'create-label'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -375,7 +375,7 @@ According to [`comment-id`](#comment-id) delete the specified comment.

```yml
- name: Delete comment
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'delete-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -410,7 +410,7 @@ jobs:
if: github.event.label.name == 'invalid'
steps:
- name: Lock issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'lock-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -444,7 +444,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: mark-duplicate
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'mark-duplicate'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -479,7 +479,7 @@ Open the specified issue.

```yml
- name: Open issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'open-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -500,7 +500,7 @@ Remove the person designated by issue.

```yml
- name: Remove assignees
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'remove-assignees'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -523,7 +523,7 @@ Remove the specified labels.

```yml
- name: Remove labels
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'remove-labels'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -548,7 +548,7 @@ Replace the labels of issue.

```yml
- name: Set labels
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'set-labels'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -571,7 +571,7 @@ Unlock the specified issue.

```yml
- name: Unlock issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'unlock-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -604,7 +604,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Update comment
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'update-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -634,7 +634,7 @@ Update the specified issue according to the `issue-number`.

```yml
- name: Update issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'update-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -684,7 +684,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: welcome
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'welcome'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -727,7 +727,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check-inactive
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'check-inactive'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -780,7 +780,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check-issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'check-issue'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -820,7 +820,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: close-issues
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -854,7 +854,7 @@ Find the current warehouse issue No. 1, the creator is k and the content contain

```yml
- name: Find comments
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'find-comments'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -902,7 +902,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: lock-issues
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'lock-issues'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -949,7 +949,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: month-statistics
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'month-statistics'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -994,7 +994,7 @@ jobs:
if: github.event.label.name == 'watch'
steps:
- name: find comments
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
id: fcid
with:
actions: 'find-comments'
Expand All @@ -1009,7 +1009,7 @@ jobs:

- name: create comment
if: contains(steps.fcid.outputs.comments, '<!-- Created by actions-cool/issues-helper -->') == false
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -1020,7 +1020,7 @@ jobs:

- name: update comment
if: contains(steps.fcid.outputs.comments, '<!-- Created by actions-cool/issues-helper -->') == true
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
with:
actions: 'update-comment'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -1061,7 +1061,7 @@ When the token is not filled in actions or input `${{ secrets.GITHUB_TOKEN }}`,

```yml
- name: Create issue
uses: actions-cool/[email protected].0
uses: actions-cool/[email protected].1
id: createissue
with:
actions: 'create-issue'
Expand Down
Loading