Commit 3922d9d1 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: skip checking YAML alias as job

parent da319788
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -563,6 +563,8 @@ def _check_tpl(
    # check jobs
    # ----------
    for name, body in tpl_body.items():
        if isinstance(body, str): # alias
            continue
        if "stage" not in body and "extends" not in body:
            # not a job?,
            continue