mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
22 lines
631 B
YAML
22 lines
631 B
YAML
name: Help Wanted
|
|
|
|
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@v2
|
|
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, PR wanted。
|
|
|
|
你好 @${{ github.event.issue.user.login }},我们完全同意你的提议/反馈,欢迎 PR。
|