群聊增加群成员显示

This commit is contained in:
xaoyaoo 2024-09-08 08:52:41 +08:00
parent 65d824cf42
commit 72cb404e35

View File

@ -19,4 +19,24 @@
# dst_account_type: user
# mappings: "dashboard=>dashboards"
# static_list: "trader"
# cache_path: /github/workspace/hub-mirror-cache
# cache_path: /github/workspace/hub-mirror-cache
name: Hello World Action
on:
push:
branches: [ main ] # 触发条件:当主分支有新的推送时
jobs:
hello-job:
runs-on: ubuntu-latest # 运行环境:最新的 Ubuntu 系统
steps:
- name: Checkout Repository
uses: actions/checkout@v3 # 检出代码
- name: Print Hello Message
run: echo "Hello, world!" # 执行命令,打印消息
- name: Print Date
run: date # 执行命令,打印当前日期