POC: test reusable workflow job visibility in Gitea Actions
CI — gitea-ci-library / feature (push) Failing after 1m18s
CI — gitea-ci-library / master (push) Has been skipped

This commit is contained in:
moilanik
2026-06-08 17:22:26 +03:00
parent 8f1bf7e347
commit d76fc9acc2
4 changed files with 157 additions and 35 deletions
+24
View File
@@ -0,0 +1,24 @@
# ci-engine-test.yml — POC: testaa kuinka Gitea raportoi reusable workflow'n jobit
#
# Tämä on väliaikainen testimoottori. Poistetaan POC:n jälkeen.
# Tarkistetaan näkyykö commitissa:
# - ci-engine-test.yml / hello-one
# - ci-engine-test.yml / hello-two
# vai pelkkä yksi check kutsuvan jobin nimellä.
name: CI Engine Test
on:
workflow_call:
jobs:
hello-one:
runs-on: ubuntu-latest
steps:
- run: echo "hello one"
hello-two:
needs: hello-one
runs-on: ubuntu-latest
steps:
- run: echo "hello two"