From 6de46a855fcabb37025393649b5cc25faeb45621 Mon Sep 17 00:00:00 2001 From: Gregor Sturm Date: Wed, 20 Nov 2024 08:25:50 +0100 Subject: [PATCH] Fix gitignore in output/report folders of template (#63) * Do not ignore gitignore files in output/report folders * Update changelog * fix changelog --- CHANGELOG.md | 6 ++++++ src/dso/templates/stage/bash/output/.gitignore | 1 + src/dso/templates/stage/quarto/output/.gitignore | 1 + src/dso/templates/stage/quarto/report/.gitignore | 1 + 4 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca73b57..beb5439 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning][]. ## [Unreleased] +### Template updates + +- Do not ignore gitignore files in output/report directories of template ([#63](https://github.com/Boehringer-Ingelheim/dso/pull/63)) + +## v0.10.0 + ### Template updates - Improve instruction text in quarto template to get users started more quickly ([#40](https://github.com/Boehringer-Ingelheim/dso/pull/40)) - Add `.gitignore` catch-all clauses for `output` and `report` folders in stages to not pick up data and repots being tracked via git ([#46](https://github.com/Boehringer-Ingelheim/dso/issues/46)). diff --git a/src/dso/templates/stage/bash/output/.gitignore b/src/dso/templates/stage/bash/output/.gitignore index 72e8ffc..d6b7ef3 100644 --- a/src/dso/templates/stage/bash/output/.gitignore +++ b/src/dso/templates/stage/bash/output/.gitignore @@ -1 +1,2 @@ * +!.gitignore diff --git a/src/dso/templates/stage/quarto/output/.gitignore b/src/dso/templates/stage/quarto/output/.gitignore index 72e8ffc..d6b7ef3 100644 --- a/src/dso/templates/stage/quarto/output/.gitignore +++ b/src/dso/templates/stage/quarto/output/.gitignore @@ -1 +1,2 @@ * +!.gitignore diff --git a/src/dso/templates/stage/quarto/report/.gitignore b/src/dso/templates/stage/quarto/report/.gitignore index 72e8ffc..d6b7ef3 100644 --- a/src/dso/templates/stage/quarto/report/.gitignore +++ b/src/dso/templates/stage/quarto/report/.gitignore @@ -1 +1,2 @@ * +!.gitignore