0.0.4 โ€ข Published 2 years ago

issues-helper v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

๐Ÿค– Issues Helper

็ฎ€ไฝ“ไธญๆ–‡ | English

npm.io npm.io dumi code style: prettier

npm.io npm.io npm.io npm.io

A GitHub Action that easily helps you automatically manage issues

Online documentation | Changelog

๐Ÿ˜Ž 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. Public are unlimited.

Who is using?

Please leave a message at here.

README Badge

If you think issues-helper can help you, please copy it to the README to support promotion and bring convenience to more repositories:issues-helper. More color see.

[![issues-helper](https://img.shields.io/badge/Issues%20Manage%20By-issues--helper-blue?style=flat-square)](https://github.com/actions-cool/issues-helper)

โšก Feedback

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

List

When the following list does not have the features you want, you can submit it in What do you want?.

๐Ÿš€ 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.

name: Add Assigness

on:
  issues:
    types: [opened, edited]

jobs:
  add-assigness:
    runs-on: ubuntu-latest
    steps:
      - name: Add assigness
        uses: actions-cool/issues-helper@v2
        with:
          actions: 'add-assignees'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
          assignees: 'xxx' or 'xx1,xx2'
          random-to: 1
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
assigneesDesignated person. No operation when no input or empty characterstringโœ–
random-toWhen set, it will be randomly selected in assigneesnumberโœ–
  • 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.event.issue.number }} is the current issue. More references
  • assignees support multiple and separated by comma

โซ Back to list

add-labels

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

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@v2
        with:
          actions: 'add-labels'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
          labels: 'bug' or 'xx1,xx2'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
labelsNew labels. When it is not filled in or is empty character, do not addstringโœ–
  • labels support multiple and separated by comma

โซ Back to list

close-issue

Close the specified issue.

- name: Close issue
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'close-issue'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: xxx
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–

โซ Back to list

create-comment

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

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@v2
        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 }}ใ€‚ๅทดๆ‹‰ๅทดๆ‹‰ใ€‚
          contents: '+1' or '+1,heart'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
bodyAdd comment contentstringโœ–
contentsAdd reactionstringโœ–
  • body default is Currently at ${owner}/${repo}. And this is default comment.
    • Where ${owner}/${repo} means the current repo
  • Return comment-id, which can be used for subsequent operations. Usage reference
  • ${{ github.event.issue.user.login }} indicates the creator of the issue
  • contents support multiple and separated by comma

โซ Back to list

create-issue

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

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@v2
        with:
          actions: 'create-issue'
          token: ${{ secrets.GITHUB_TOKEN }}
          title: 'xxxx'
          body: 'xxxx'
          labels: 'xx'
          assignees: 'xxx'
          contents: '+1'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
titleThe title of the new issuestringโœ–
bodyThe body of the new issuestringโœ–
labelsThe labels for the new issuestringโœ–
assigneesThe assignees for the new issuestringโœ–
random-toWhen set, it will be randomly selected in assigneesnumberโœ–
contentsAdd reactionstringโœ–

โซ Back to list

create-label

Create label. If you want to maintain labels in batches, see.

- name: Create label
  uses: actions-cool/issues-helper@v2
  with:
    actions: 'create-label'
    token: ${{ secrets.GITHUB_TOKEN }}
    label-name: 'xx'
    label-color: '0095b3'
    label-desc: 'xx'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
label-nameLabel name, emoji supportstringโœ”
label-colorLabel color, the format is hexadecimal color code, without #stringโœ–
label-descLabel descriptionstringโœ–
  • label-name: If it already exists, no operation
  • label-color: Default is ededed

โซ Back to list

delete-comment

According to comment-id delete the specified comment.

- name: Delete comment
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'delete-comment'
      token: ${{ secrets.GITHUB_TOKEN }}
      comment-id: xxx
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
comment-idThe comment IDnumberโœ”
out-commentsThe output of find-comments, if you find multiple, operate multiplestringโœ–
  • When out-comments is entered, comment-id does not work

โซ Back to list

lock-issue

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

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@v2
        with:
          actions: 'lock-issue'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
lock-reasonReason for locking issuestringโœ–
  • lock-reason: Optional values are off-topic too heated resolved spam

โซ Back to list

mark-duplicate

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

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@v2
        with:
          actions: 'mark-duplicate'
          token: ${{ secrets.GITHUB_TOKEN }}
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
duplicate-commandSimple commands can be set, such as: /dstringโœ–
duplicate-labelsAdd additional labels to this issuestringโœ–
remove-labelsSet removable labelsstringโœ–
labelsReplace the labels of the issuestringโœ–
contentsAdd reaction for this commentstringโœ–
close-issueWhether to close the issue at the same timestringโœ–
require-permissionPermission required, default is writestringโœ–
  • 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

open-issue

Open the specified issue.

- name: Open issue
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'open-issue'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: xxx
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–

โซ Back to list

remove-assignees

Remove the person designated by issue.

- name: Remove assignees
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'remove-assignees'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: ${{ github.event.issue.number }}
      assignees: 'xx'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
assigneesDesignated person removed. When it is an empty character, do not removestringโœ”

โซ Back to list

remove-labels

Remove the specified labels.

- name: Remove labels
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'remove-labels'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: ${{ github.event.issue.number }}
      labels: 'xx'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
labelsThe removed labels. When it is a blank character, do not removestringโœ”
  • labels supports multiple, such as x1,x2,x3, only the labels added by the issue will be removed

โซ Back to list

set-labels

Replace the labels of issue.

- name: Set labels
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'set-labels'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: ${{ github.event.issue.number }}
      labels: 'xx'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
labelslabels set. When empty characters, will remove allstringโœ”

โซ Back to list

unlock-issue

Unlock the specified issue.

- name: Unlock issue
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'unlock-issue'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: ${{ github.event.issue.number }}
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–

โซ Back to list

update-comment

Update the specified comment according to comment-id.

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

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@v2
          with:
            actions: 'update-comment'
            token: ${{ secrets.GITHUB_TOKEN }}
            comment-id: ${{ github.event.comment.id }}
            contents: 'eyes'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
comment-idThe comment IDnumberโœ”
out-commentsThe output of find-comments, if you find multiple, operate multiplestringโœ–
bodyUpdate the content of commentstringโœ–
update-modeUpdate mode. Default replace, another appendstringโœ–
contentsAdd reactionstringโœ–
  • 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
  • When out-comments is entered, comment-id does not work

โซ Back to list

update-issue

Update the specified issue according to the issue-number.

- name: Update issue
    uses: actions-cool/issues-helper@v2
    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'
      contents: '+1'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
stateModify the status of issue, optional value open closedstringโœ–
titleModify the title of the issuestringโœ–
bodyModify the content of issuestringโœ–
update-modeUpdate mode. Default replace, another appendstringโœ–
labelsReplace the labels of issuestringโœ–
assigneesReplace the assignees of issuestringโœ–
contentsAdd reactionstringโœ–
  • state defaults to open
  • When the option is not filled, it will keep the original

โซ Back to 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.

name: Issue Welcome

on:
  issues:
    types: [opened]

jobs:
  issue-welcome:
    runs-on: ubuntu-latest
    steps:
      - name: welcome
        uses: actions-cool/issues-helper@v2
        with:
          actions: 'welcome'
          token: ${{ secrets.GITHUB_TOKEN }}
          body: hi @${{ github.event.issue.user.login }}, welcome!
          labels: 'welcome1, welcome2'
          assignees: 'xx1'
          issue-contents: '+1, -1, eyes'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
bodyComment on the welcome content, no comment if you leave it blankstringโœ–
labelsAdd labels to this issuestringโœ–
assigneesAdd assignees to this issuestringโœ–
issue-contentsAdd reaction to this issuestringโœ–
  • If these 4 options are not filled, no operation

โซ Back to 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.

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@v2
        with:
          actions: 'check-inactive'
          token: ${{ secrets.GITHUB_TOKEN }}
          inactive-day: 30
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
bodyWhen operating an issue, you can comment. Do not comment when not typingstringโœ–
contentsAdd reaction for this commentstringโœ–
labelsLabels filteringstringโœ–
issue-stateState filteringstringโœ–
issue-assigneeAssignee filteringstringโœ–
issue-creatorCreator filteringstringโœ–
issue-mentionedMentioned filteringstringโœ–
body-includesBody filteringstringโœ–
title-includesTitle filteringstringโœ–
inactive-dayInactive days filteringnumberโœ–
inactive-labelThe label name addingstringโœ–
exclude-labelsExclude labels filteringstringโœ–
  • 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

โซ Back to 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

name: Check Issue

on:
  issues:
    types: [edited]

jobs:
  check-issue:
    runs-on: ubuntu-latest
    steps:
      - name: check-issue
        uses: actions-cool/issues-helper@v2
        with:
          actions: 'check-issue'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
          assignee-includes: 'x1,x2'
          title-includes: 'x1,x2/y1,y2'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
assignee-includesAssignees contains checkstringโœ–
title-includesTitle contains checkstringโœ–
title-excludesCheck whether the title is empty after removing the default titlestringโœ–
body-includesBody contains checkstringโœ–
  • 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

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.

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@v2
        with:
          actions: 'close-issues'
          token: ${{ secrets.GITHUB_TOKEN }}
          labels: 'need info'
          inactive-day: 7
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
bodyWhen operating an issue, you can comment. Do not comment when not typingstringโœ–
contentsAdd reaction for this commentstringโœ–
labelsLabels filteringstringโœ–
issue-assigneeAssignee filteringstringโœ–
issue-creatorCreator filteringstringโœ–
issue-mentionedMentioned filteringstringโœ–
body-includesBody filteringstringโœ–
title-includesTitle filteringstringโœ–
inactive-dayInactive days filteringnumberโœ–
exclude-labelsExclude labels filteringstringโœ–
  • 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

โซ Back to list

find-comments

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

- name: Find comments
    uses: actions-cool/issues-helper@v2
    with:
      actions: 'find-comments'
      token: ${{ secrets.GITHUB_TOKEN }}
      issue-number: 1
      comment-auth: 'k'
      body-includes: 'this'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
issue-numberThe number of issue. When not input, it will be obtained from the trigger eventnumberโœ–
comment-authComment creator, all will be queried if not filledstringโœ–
body-includesComment content includes filtering, no verification if not filledstringโœ–
directionReturn comments sortstringโœ–
  • Return comments in the following format:
[
  {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

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.

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@v2
        with:
          actions: 'lock-issues'
          token: ${{ secrets.GITHUB_TOKEN }}
          labels: 'inactive'
          inactive-day: 128
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
bodyWhen operating an issue, you can comment. Do not comment when not typingstringโœ–
contentsAdd reaction for this commentstringโœ–
labelsLabels filteringstringโœ–
issue-stateState filteringstringโœ–
issue-assigneeAssignee filteringstringโœ–
issue-creatorCreator filteringstringโœ–
issue-mentionedMentioned filteringstringโœ–
body-includesBody filteringstringโœ–
title-includesTitle filteringstringโœ–
inactive-dayInactive days filteringnumberโœ–
lock-reasonReason for locking issuestringโœ–
exclude-labelsExclude labels filteringstringโœ–
  • 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

โซ Back to list

month-statistics

At 1 o'clock on the 1st of each month, an issue is generated for the statistics of the previous month.

name: Issue Month Statistics

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

jobs:
  month-statistics:
    runs-on: ubuntu-latest
    steps:
      - name: month-statistics
        uses: actions-cool/issues-helper@v2
        with:
          actions: 'month-statistics'
          token: ${{ secrets.GITHUB_TOKEN }}
          count-lables: 'true'
ParamDescTypeRequired
actionsAction typestringโœ”
tokenToken explainstringโœ”
labelsThe labels for the new issuestringโœ–
assigneesThe assignees for the new issuestringโœ–
count-lablesWhether the new issue count labelsstringโœ–
count-commentsWhether the new issue count commentsstringโœ–
  • The new issue title defaults to [Current repo] Month Statistics: Year-Month
  • count-lables: You can set 'true' to add labels statistics
  • count-comments: You can set 'true' to add comments statistics

โซ Back to list

๐ŸŒฐ Example

Flexible reference.

find-comments + create-comment + update-comment

Hypothetical scenario: When the issue modification of the watch label is added, find out whether there is a comment created by k that contains <!-- Created by actions-cool/issues-helper -->, if so, update the comment, If not, add a comment.

Of course, if you need such a scene, you can directly use Maintain One Comment.

name: Test

on:
  issues:
    types: [edited]

jobs:
  do-test:
    runs-on: ubuntu-latest
    if: github.event.label.name == 'watch'
    steps:
      - name: find comments
        uses: actions-cool/issues-helper@v2
        id: fcid
        with:
          actions: 'find-comments'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
          comment-auth: k
          body-includes: '<!-- Created by actions-cool/issues-helper -->'

      # Output view found content. GitHub default outputs are strings
      - run: echo find-comments ${{ steps.fcid.outputs.comments }}
        shell: bash

      - name: create comment
        if: contains(steps.fcid.outputs.comments, '<!-- Created by actions-cool/issues-helper -->') == false
        uses: actions-cool/issues-helper@v2
        with:
          actions: 'create-comment'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
          body: |
            Error
            <!-- Created by actions-cool/issues-helper -->

      - name: update comment
        if: contains(steps.fcid.outputs.comments, '<!-- Created by actions-cool/issues-helper -->') == true
        uses: actions-cool/issues-helper@v2
        with:
          actions: 'update-comment'
          token: ${{ secrets.GITHUB_TOKEN }}
          out-comments: ${{ steps.fcid.outputs.comments }}
          body: |
            Error Again
            <!-- Created by actions-cool/issues-helper -->
          update-mode: 'append'

โซ Back to list

๐ŸŽ Reference

token

Need to have the person token with push permission.

  • Personal token application
    • 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.

โซ Back to list

GitHub Docs

โซ Back to list

outputs use

- name: Create issue
  uses: actions-cool/issues-helper@v2
  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

Check rules

"title-includes": 'x1,x2'

x1
x2

"x1y3y2"  true
"y2 x1"   true
"x2"      true
"x3"      false
"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

Reactions types

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

โซ Back to 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

โœจ Version

  • Version rules

    • Use two-level semantic version, such as v1, v1.1, v2, v2.1
    • v1 represents the initial version
    • The fixes and additions to the v1 version will be released to the v1.1 version
    • When the released v1.x runs stable for a certain period of time or undergoes refactoring, release the advanced v2 version
    • After the v2 version, the version will be released strictly according to the three-level semantics, such as v2.0.0, v2.1.0
  • Version selection

    • It is recommended to use the latest releases version. It can be seen in releases
    • You can also refer to the update log below to select the version
    • The latest v1.x release code will be merged into the 1.x branch
    • It also supports the direct use of branch versions. Such as:
- name: Issues Helper
  uses: actions-cool/issues-helper@main

# or

- name: Issues Helper
  uses: actions-cool/issues-helper@1.x

Actions Template

LICENSE

MIT

0.0.3

2 years ago

0.0.2

2 years ago

0.0.4

2 years ago

0.0.1

3 years ago