From 92e64134987d1463f35d0ec673598161d4c8909f Mon Sep 17 00:00:00 2001 From: kovagoadi Date: Tue, 21 Oct 2025 20:49:36 +0200 Subject: [PATCH] Added files --- .gitea/workflows/hello.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/hello.yaml diff --git a/.gitea/workflows/hello.yaml b/.gitea/workflows/hello.yaml new file mode 100644 index 0000000..7e34a49 --- /dev/null +++ b/.gitea/workflows/hello.yaml @@ -0,0 +1,15 @@ +name: Hello world + +on: + - push + +jobs: + say-hello: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Print hello + run: echo "Hello, world! from Gitea Actions" +