Files
moodiary/.github/workflows/issue.yml
ZhuJHua 0222f7b352 ci(*): add flutter analyze workflow and dynamic flutter version support
- Introduced a new workflow, `flutter-analyze.yml`, to perform Flutter code analysis.
- Added dynamic Flutter version selection based on the `.fvmrc` file or defaulted to the latest stable version.
- Modified the `build.yml` workflow to also use the dynamic Flutter version.
- Added the installation of `jq` to read the Flutter version from `.fvmrc`.
2025-01-19 01:35:25 +08:00

23 lines
971 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: Issue Labeled
on:
issues:
types: [ labeled ]
jobs:
issue-labeled:
if: github.actor != github.event.issue.user.login
runs-on: ubuntu-latest
steps:
- name: Need more info
if: github.event.label.name == 'question'
uses: actions-cool/issues-helper@main
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
你好 @${{ github.event.issue.user.login }},你所提供的信息不足于我们排查问题,请按照 issue 模板填写相关信息感谢配合谢谢15 天内未回复issue自动关闭。
Hello, @${{ github.event.issue.user.login }}, the information you provided is not enough for us to troubleshoot the problem. Please complete the issue description. Thanks so much for your cooperation! The issue will be closed without any replay within 15 days.