mirror of
https://github.com/RROrg/rr.git
synced 2025-06-21 05:51:05 +08:00
71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
#
|
|
# Copyright (C) 2022 Ing <https://github.com/wjz304>
|
|
#
|
|
# This is free software, licensed under the MIT License.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
name: Auto Comment
|
|
on:
|
|
issues:
|
|
types: [opened, reopened]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Init Env
|
|
run: |
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --global user.name "github-actions[bot]"
|
|
sudo timedatectl set-timezone "Asia/Shanghai"
|
|
|
|
- name: Check Issues
|
|
run: |
|
|
if echo "${{ github.event.issue.body }}" | grep -q "ENV"; then
|
|
echo "FALG=true" >> $GITHUB_ENV
|
|
else
|
|
echo "FALG=false" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Create Issues comment
|
|
if: env.FALG == 'false'
|
|
uses: actions-cool/issues-helper@v3
|
|
with:
|
|
actions: "create-comment"
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-number: ${{ github.event.issue.number }}
|
|
body: |
|
|
<img src="https://user-images.githubusercontent.com/5615843/235939097-6798da58-24fd-44cc-9970-c8d2f9609704.jpg" width="400">
|
|
|
|
请填写以下信息.
|
|
Please fill in the following information.
|
|
|
|
Install ENV: (You can find it in the boot interface.)
|
|
* DMI:
|
|
* CPU:
|
|
* NIC:
|
|
|
|
RR version: (You can find it in the update menu.)
|
|
* RR:
|
|
* addons:
|
|
* modules:
|
|
* lkms:
|
|
|
|
DSM:
|
|
* model:
|
|
* version:
|
|
|
|
Issue:
|
|
|
|
logs:
|
|
|
|
(请先看一下#173、#175、#226的内容)
|
|
(Plz review the content of #173, #175, #226 first)
|
|
...
|
|
|
|
... 如果你提供不了详细信息,那就等有缘人吧!
|
|
... If you can't provide detailed information, then wait for someone who is destined!
|
|
|
|
emoji: heart
|