From a4122098c5c3fd147723fb6cd4daa789f04e9eaa Mon Sep 17 00:00:00 2001 From: moilanik Date: Mon, 8 Jun 2026 17:32:34 +0300 Subject: [PATCH] POC: smoke test without workflow_call + disable broken ci.yml --- .gitea/workflows/ci-smoke-test.yml | 16 ++++++++++++++++ .gitea/workflows/{ci.yml => ci.yml.poc-disabled} | 0 2 files changed, 16 insertions(+) create mode 100644 .gitea/workflows/ci-smoke-test.yml rename .gitea/workflows/{ci.yml => ci.yml.poc-disabled} (100%) diff --git a/.gitea/workflows/ci-smoke-test.yml b/.gitea/workflows/ci-smoke-test.yml new file mode 100644 index 0000000..4ca3fd3 --- /dev/null +++ b/.gitea/workflows/ci-smoke-test.yml @@ -0,0 +1,16 @@ +# ci-smoke-test.yml — absolute minimaalinen testi: toimiiko Gitea Actions lainkaan +name: Smoke test +on: + push: + branches: ["**"] + +jobs: + one: + runs-on: ubuntu-latest + steps: + - run: echo "smoke test one" + two: + needs: one + runs-on: ubuntu-latest + steps: + - run: echo "smoke test two" diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml.poc-disabled similarity index 100% rename from .gitea/workflows/ci.yml rename to .gitea/workflows/ci.yml.poc-disabled