From 2fc10981664266ac560e0f3255adfcd1959d876d Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Mon, 23 Jun 2025 13:45:56 +0200 Subject: [PATCH] feat(ci): add defaults CI template to improve pipeline setup Adds the Defaults.gitlab-ci.yml to the CI configuration, allowing for a more standardized setup across projects. This change enhances efficiency by leveraging shared configurations, reducing the need for duplicate settings in individual pipeline files. --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ec1eb6c..4fc1d4b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,7 @@ include: - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml' +- project: unboundsoftware/ci-templates + file: Defaults.gitlab-ci.yml - project: unboundsoftware/ci-templates file: Release.gitlab-ci.yml -- 2.52.0