Files
gitea-ci-library/.gitea/workflows/ci.yml
T
moilanik d76fc9acc2
CI — gitea-ci-library / feature (push) Failing after 1m18s
CI — gitea-ci-library / master (push) Has been skipped
POC: test reusable workflow job visibility in Gitea Actions
2026-06-08 17:22:26 +03:00

26 lines
633 B
YAML

# .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: ./.gitea/workflows/ci-engine-test.yml
secrets: inherit
master:
if: github.ref == 'refs/heads/master'
uses: ./.gitea/workflows/ci-engine-test.yml
secrets: inherit