commit 8d8707ba6f62186dab645bad77a6bf2dbf8dfd8f Author: Martin Kudlacek Date: Thu Nov 13 08:25:41 2025 +0100 WIP 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!"