Files
issues-helper/docs/index.md
xrkffgg 9018700e94 docs: add users (#44)
* docs: add users

* fix
2021-01-18 09:54:18 +08:00

2.1 KiB
Raw Permalink Blame History

title, order, hero, features, footer
title order hero features footer
Issues 助手 1
title image desc actions
Issues 助手 https://avatars1.githubusercontent.com/u/73879334?s=200&v=4 🤖 一个轻松帮你自动管理 issues 的 GitHub Action
text link
快速开始 /guide/start
icon title desc
https://github.com/actions-cool/resources/blob/main/image/free.png?raw=true 完全免费 使用 GitHub 自带提供的 Actions 服务
icon title desc
https://github.com/actions-cool/resources/blob/main/image/snap.png?raw=true 简单易用 教程详细,模版丰富
icon title desc
https://github.com/actions-cool/resources/blob/main/image/network.png?raw=true 轻松托管 只要 GitHub 不宕机,它就不受影响
Open-source MIT Licensed | Copyright © 2020-present<br />Powered by xrkffgg

🍭 快速上手

这里列举一个非常简单以及常用的例子。对应场景为:当一个 issue 新增 help wanted 标签时,系统会自动进行评论。

name: Issue Reply

on:
  issues:
    types: [labeled]

jobs:
  reply-helper:
    runs-on: ubuntu-latest
    steps:
      - name: help wanted
        if: github.event.label.name == 'help wanted'
        uses: actions-cool/issues-helper@v1.11
        with:
          actions: 'create-comment'
          token: ${{ secrets.GITHUB_TOKEN }}
          issue-number: ${{ github.event.issue.number }}
          body: |
            Hello @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome PR。

            你好 @${{ github.event.issue.user.login }},我们完全同意你的提议/反馈欢迎PR。

💖 谁在使用?

反馈

非常欢迎你来尝试使用,并提出意见,你可以通过以下方式: