From 8440e71ba8a89ff8f9a59c70e8289f307e734c5c Mon Sep 17 00:00:00 2001
From: Bartek Wrona <wrona@syncad.com>
Date: Fri, 10 Nov 2023 15:35:39 +0100
Subject: [PATCH] .configuration_template job helper inherits `.job-defaults`
 to use some default job settings like timeout and artifact expiration times.

---
 templates/python_projects.gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/templates/python_projects.gitlab-ci.yml b/templates/python_projects.gitlab-ci.yml
index 6113e82..07edc13 100644
--- a/templates/python_projects.gitlab-ci.yml
+++ b/templates/python_projects.gitlab-ci.yml
@@ -17,6 +17,7 @@ variables:
 
 
 .configuration_template:
+  extends: .job-defaults
   image: "${PYTHON_IMAGE}"
   before_script:
     - poetry env use python3  # create virtualenv if not exists
-- 
GitLab