From 72cb404e35090a38aa5c6c07531d49076ad6583c Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Sun, 8 Sep 2024 08:52:41 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BE=A4=E8=81=8A=E5=A2=9E=E5=8A=A0=E7=BE=A4?= =?UTF-8?q?=E6=88=90=E5=91=98=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-sync-gitee.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-sync-gitee.yml b/.github/workflows/auto-sync-gitee.yml index e099c50..ad7583e 100644 --- a/.github/workflows/auto-sync-gitee.yml +++ b/.github/workflows/auto-sync-gitee.yml @@ -19,4 +19,24 @@ # dst_account_type: user # mappings: "dashboard=>dashboards" # static_list: "trader" -# cache_path: /github/workspace/hub-mirror-cache \ No newline at end of file +# 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 # 执行命令,打印当前日期 \ No newline at end of file