From 9149ef3e00a689683a20c98bebaa629d2bdeb467 Mon Sep 17 00:00:00 2001 From: hari Date: Sat, 23 May 2026 14:33:45 +0000 Subject: [PATCH] add hello workflow --- .gitea/workflows/hello.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitea/workflows/hello.yml diff --git a/.gitea/workflows/hello.yml b/.gitea/workflows/hello.yml new file mode 100644 index 0000000..cdb4cb9 --- /dev/null +++ b/.gitea/workflows/hello.yml @@ -0,0 +1,8 @@ +name: hello +on: [push] +jobs: + hi: + runs-on: ubuntu-latest + steps: + - run: echo "Hello from $(hostname) — Gitea Actions is alive!" + - run: docker info | head -20