mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-18 01:35:58 +08:00
2.2 KiB
2.2 KiB
title, order, hero, features, footer
title | order | hero | features | footer | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Issues Helper | 1 |
|
|
Open-source MIT Licensed | Copyright © 2020-present<br />Powered by xrkffgg |
🍭 Get started quickly
Here is a very simple and commonly used example. The corresponding scenario is: when an issue adds the help wanted
tag, the system will automatically comment.
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@v3
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。
💖 Who is using?
⚡ 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
- Discuss via Discussions
- Submit Pull Request to improve the code of
issues-helper