From 8c9a9d6020282aa2957e6e0fc317a1493a6d3cc7 Mon Sep 17 00:00:00 2001 From: hhs <386998068@qq.com> Date: Sat, 13 Jun 2026 10:42:07 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=B7=BB=E5=8A=A0=20health=20test=20?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E7=94=A8=E4=BA=8E=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=20Gitea=20Actions=20=E8=BF=90=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/health-test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/health-test.yml diff --git a/.gitea/workflows/health-test.yml b/.gitea/workflows/health-test.yml new file mode 100644 index 0000000..06b7d3b --- /dev/null +++ b/.gitea/workflows/health-test.yml @@ -0,0 +1,18 @@ +name: Health Test +run-name: ${{ gitea.actor }} is testing Gitea Actions 🚀 + +on: [push] + +jobs: + health: + runs-on: aliyun + steps: + - run: echo "🎉 Triggered by ${{ gitea.event_name }} event" + - run: echo "🌿 Branch: ${{ gitea.ref }}, Repo: ${{ gitea.repository }}" + - run: echo "🐧 Running on ${{ runner.os }}, workspace: ${{ gitea.workspace }}" + - name: Check out repository code + uses: http://8.161.227.145:3000/huanghaosheng/checkout@releases/v4 + - run: echo "💡 ${{ gitea.repository }} has been cloned to the runner" + - name: List files in the repository + run: ls ${{ gitea.workspace }} + - run: echo "🍏 Job status: ${{ job.status }}"