子应用中使用 wangEditor 时报错 #1034
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Comment | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-helper: | |
runs-on: ubuntu-latest | |
steps: | |
- name: help wanted | |
if: github.event.label.name == 'pr welcome' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome to send us a Pull Request for it. Please be sure to submit compliant commit message, provide changelog/documentation/test cases, we will review it soon. We appreciate your effort in advance and looking forward to your contribution! | |
您好 @${{ github.event.issue.user.login }},我们完全同意您的提议/反馈,欢迎直接在此仓库创建一个 Pull Request 来解决这个问题。请务必填写符合规范的commit message,提供改动所需相应的 changelog、测试用例、文档等,我们会尽快进行 Review,提前感谢和期待您的贡献。 | |
- name: pls use issue template | |
if: github.event.label.name == 'pls use issue template' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment, close-issue' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. Please use the issue template to report. This issue will be closed. | |
您好 @${{ github.event.issue.user.login }},请使用 issue 模板反馈问题。该 issue 将要被关闭。 | |
- name: Need Reproduction | |
if: github.event.label.name == 'Need Reproduction' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. In order to facilitate location and troubleshooting, we need you to provide a realistic GitHub repository. | |
您好 @${{ github.event.issue.user.login }}, 为了方便定位和排查问题,我们需要您提供一个重现实例,请提供一个尽可能精简的 GitHub 仓库地址。 | |
- name: fixed | |
if: github.event.label.name == 'fixed' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment, close-issue' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. The issue you reported has been fixed. This issue will be closed. Thank you for your feedback. | |
您好 @${{ github.event.issue.user.login }},您反馈的问题已修复,该 issue 将要被关闭,感谢反馈。 |