From dd9ad9e2c857f820459644d77922437ebd4c4c6f Mon Sep 17 00:00:00 2001 From: niko Date: Tue, 16 Jun 2026 07:16:47 +0300 Subject: [PATCH] Feature/ci container (#14) Co-authored-by: moilanik Reviewed-on: https://gitea.app.keskikuja.site/niko/gitea-ci-library/pulls/14 --- .gitea/workflows/example-manual-hello.yml | 11 +++++++++++ 1 file changed, 11 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..0c3fa75 --- /dev/null +++ b/.gitea/workflows/example-manual-hello.yml @@ -0,0 +1,11 @@ +name: Hello World (Manual) +on: + workflow_dispatch: + push: + # branches: [ main ] # Tai [ feature/ci-container ] + branches: [feature/ci-container] +jobs: + greet: + runs-on: ubuntu-latest + steps: + - run: echo "Hello"