From 68fbd35ac2963fe73f5e7bd44e844a6cf9d85b39 Mon Sep 17 00:00:00 2001 From: moilanik Date: Tue, 16 Jun 2026 06:46:40 +0300 Subject: [PATCH 1/2] 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 }}" -- 2.52.0 From 0bc4348b04325555a525aa063650df95088c64cd Mon Sep 17 00:00:00 2001 From: moilanik Date: Tue, 16 Jun 2026 06:51:38 +0300 Subject: [PATCH 2/2] sadg --- .gitea/workflows/example-manual-hello.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/example-manual-hello.yml b/.gitea/workflows/example-manual-hello.yml index 86a7617..0c3fa75 100644 --- a/.gitea/workflows/example-manual-hello.yml +++ b/.gitea/workflows/example-manual-hello.yml @@ -1,7 +1,11 @@ name: Hello World (Manual) -on: workflow_dispatch +on: + workflow_dispatch: + push: + # branches: [ main ] # Tai [ feature/ci-container ] + branches: [feature/ci-container] jobs: greet: runs-on: ubuntu-latest steps: - - run: echo "Hello from manual dispatch, ${{ github.actor }}" + - run: echo "Hello" -- 2.52.0