[BUG] docker安装 出现错误 #1110
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 Labeled | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
issue-need-more-detail: | |
runs-on: ubuntu-latest | |
if: github.actor != github.event.issue.user.login | |
steps: | |
- uses: opensumi/actions/bot-token@main | |
id: bot-token | |
with: | |
token-server: ${{ secrets.BOT_TOKEN_SERVER }} | |
flag: ${{ secrets.BOT_FLAG }} | |
- name: Need more detail | |
if: github.event.label.name == '🥸 needs more detail' | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ env.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello, @${{ github.event.issue.user.login }}, the information you provided is not enough for us to troubleshoot the problem. Please complete the issue description (refer #1165 #1141), provide gifs, screenshots, config, version. And explain the reproduction steps in detail. Thanks so much for your cooperation! The issue will be closed without any replay within 15 days. | |
你好 @${{ github.event.issue.user.login }},你所提供的信息不足于我们排查问题, 请按照 issue 模板填写相关信息 (参考 #1165 #1141), 提供 gif, 截图, 代码片段, 配置信息, 版本号, 可复现链接等方式, 详细说明复现步骤, 感谢配合, 谢谢! 15 天内未回复 issue 自动关闭。 | |
issue-need-reproduce: | |
runs-on: ubuntu-latest | |
if: github.actor != github.event.issue.user.login | |
steps: | |
- uses: opensumi/actions/bot-token@main | |
id: bot-token | |
with: | |
token-server: ${{ secrets.BOT_TOKEN_SERVER }} | |
flag: ${{ secrets.BOT_FLAG }} | |
- name: Need reproduce | |
uses: actions-cool/issues-helper@v3 | |
if: github.event.label.name == '🧐 need reproduce' | |
with: | |
actions: 'create-comment' | |
token: ${{ env.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello, @${{ github.event.issue.user.login }}, the information you provided is not enough for us to troubleshoot the problem. Please explain the reproduction steps in detail. Thanks so much for your cooperation! The issue will be closed without any replay within 15 days. | |
你好 @${{ github.event.issue.user.login }},你所提供的信息不足于我们排查问题, 请提供一个可以复现的案例,可以通过我们的起步项目 [ide-startup](https://github.com/opensumi/ide-startup) 进行尝试复现你的问题, 谢谢! 15 天内未回复 issue 自动关闭。 |