From ad7ef51cf5fd7ad26e9680327cc3bfd8441ffc75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Thu, 11 Sep 2025 19:15:21 +0200 Subject: [PATCH] example gitea workflow --- .gitea/workflows/hello.yml | 9 +++++++++ 1 file changed, 9 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..41722c1 --- /dev/null +++ b/.gitea/workflows/hello.yml @@ -0,0 +1,9 @@ +name: Hello +on: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "Hello from stack-runner-01!"