From 5cab395caee54d39893b6a963a759ae0145816ee Mon Sep 17 00:00:00 2001 From: Nikola Davidova Date: Thu, 28 May 2026 16:46:34 +0200 Subject: [PATCH] add distgen-check in github workflow --- .github/workflows/container-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/container-tests.yml b/.github/workflows/container-tests.yml index 0beccd96..76e5c519 100644 --- a/.github/workflows/container-tests.yml +++ b/.github/workflows/container-tests.yml @@ -3,10 +3,12 @@ on: types: - created jobs: + distgen-check: + uses: "sclorg/ci-actions/.github/workflows/distgen-check.yml@main" check-readme: uses: "sclorg/ci-actions/.github/workflows/check-readme.yml@main" container-tests: - needs: check-readme + needs: [check-readme, distgen-check] uses: "sclorg/ci-actions/.github/workflows/container-tests.yml@main" with: enabled-tests: '[ "container", "container-pytest", "openshift-pytest" ]'