commit 92e64134987d1463f35d0ec673598161d4c8909f Author: kovagoadi Date: Tue Oct 21 20:49:36 2025 +0200 Added files 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" +