From 8d8707ba6f62186dab645bad77a6bf2dbf8dfd8f Mon Sep 17 00:00:00 2001 From: Martin Kudlacek Date: Thu, 13 Nov 2025 08:25:41 +0100 Subject: [PATCH] WIP --- .gitea/workflows/hello.yml | 15 +++++++++++++++ 1 file changed, 15 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..4ebbecc --- /dev/null +++ b/.gitea/workflows/hello.yml @@ -0,0 +1,15 @@ +name: Hello World + +on: + push: + branches: [ main ] + +jobs: + say_hello: + runs-on: docker + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Say Hello + run: echo "Hello, world from Gitea Actions!"