From 68fbd35ac2963fe73f5e7bd44e844a6cf9d85b39 Mon Sep 17 00:00:00 2001 From: moilanik Date: Tue, 16 Jun 2026 06:46:40 +0300 Subject: [PATCH] hello world manuaalisesti --- .gitea/workflows/example-manual-hello.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitea/workflows/example-manual-hello.yml diff --git a/.gitea/workflows/example-manual-hello.yml b/.gitea/workflows/example-manual-hello.yml new file mode 100644 index 0000000..86a7617 --- /dev/null +++ b/.gitea/workflows/example-manual-hello.yml @@ -0,0 +1,7 @@ +name: Hello World (Manual) +on: workflow_dispatch +jobs: + greet: + runs-on: ubuntu-latest + steps: + - run: echo "Hello from manual dispatch, ${{ github.actor }}"