From 46940f6c146bcf1cd7cd2863b78a07210534fd87 Mon Sep 17 00:00:00 2001 From: Rich Wareham <rjw57@cam.ac.uk> Date: Wed, 30 Oct 2024 15:02:45 +0000 Subject: [PATCH] fix(common-pipeline): correct include path for auto-devops template --- CHANGELOG.md | 8 +++++++- auto-devops/common-pipeline.yml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31a40cc..53010ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [6.0.2] - 2024-10-30 + +### Fixed + +- Fixed auto devops include in `/auto-devops/common.yml`. + ## [6.0.1] - 2024-10-30 -### Fixed +### Fixed - Correction to the documented ci template path '/auto-devops/auto-devops.gitlab-ci.yml'. diff --git a/auto-devops/common-pipeline.yml b/auto-devops/common-pipeline.yml index 245597a..2515ed1 100644 --- a/auto-devops/common-pipeline.yml +++ b/auto-devops/common-pipeline.yml @@ -7,7 +7,7 @@ # We add a "default" workflow rule but downstream users of this template can easily override these with their own. include: - - local: /auto-devops.gitlab-ci.yml + - local: /auto-devops/auto-devops.gitlab-ci.yml # Utilities - local: "/python-common.yml" -- GitLab