POC: test reusable workflow job visibility in Gitea Actions
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user