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