From 3bd47aec0191a660c77140859a475ed5a4d8c8c2 Mon Sep 17 00:00:00 2001 From: minsung Date: Tue, 14 Apr 2026 11:19:49 +0900 Subject: [PATCH] =?UTF-8?q?Gitea=20Actions=20Runner=20=EB=8F=99=EC=9E=91?= =?UTF-8?q?=20=ED=99=95=EC=9D=B8=EC=9A=A9=20ping=20=EC=9B=8C=ED=81=AC?= =?UTF-8?q?=ED=94=8C=EB=A1=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/ping.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/ping.yml diff --git a/.gitea/workflows/ping.yml b/.gitea/workflows/ping.yml new file mode 100644 index 0000000..632b379 --- /dev/null +++ b/.gitea/workflows/ping.yml @@ -0,0 +1,18 @@ +name: Ping (runner check) + +on: + push: + branches: [main] + paths: + - '.gitea/workflows/ping.yml' + workflow_dispatch: + +jobs: + ping: + runs-on: ubuntu-latest + steps: + - name: Say hello + run: | + echo "Runner is alive." + echo "OS: $(uname -a)" + echo "Node: $(node --version 2>/dev/null || echo 'not installed')"