Files
gitea-ci-library/.gitea/workflows/ci.yml.poc-disabled
T
moilanik a4122098c5
Smoke test / one (push) Failing after 1s
Smoke test / two (push) Has been skipped
POC: smoke test without workflow_call + disable broken ci.yml
2026-06-08 17:32:34 +03:00

26 lines
787 B
Plaintext

# .gitea/workflows/ci.yml — Kirjaston oma CI (eat your own dogfood)
#
# Tämä workflow on kirjaston ENSIMMÄINEN kuluttaja.
# Jokainen push ajaa kirjaston omat reusable workflowt.
#
# POC: testataan ci-engine-test.yml — nähdään miten Gitea
# raportoi reusable workflow'n sisäiset jobit.
name: CI — gitea-ci-library
on:
push:
branches: ["**"]
workflow_dispatch:
jobs:
feature:
if: github.ref != 'refs/heads/master'
uses: niko/gitea-ci-library/.gitea/workflows/ci-engine-test.yml@plan/0003-alkaa-käyttämään-itseään-commit-raportti
secrets: inherit
master:
if: github.ref == 'refs/heads/master'
uses: niko/gitea-ci-library/.gitea/workflows/ci-engine-test.yml@plan/0003-alkaa-käyttämään-itseään-commit-raportti
secrets: inherit