From 3691905f4e89bb2b4071bc157d688b74593a4c64 Mon Sep 17 00:00:00 2001 From: Will Wernert Date: Wed, 18 Jan 2023 13:46:15 -0500 Subject: [PATCH] Use cookininja in CI --- .github/workflows/project_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/project_ci.yml b/.github/workflows/project_ci.yml index a22e56d1..426ab78d 100644 --- a/.github/workflows/project_ci.yml +++ b/.github/workflows/project_ci.yml @@ -1,5 +1,5 @@ # In YAML, 'raw' and 'endraw' can't come at the beginning of a token or at the end of a quoted value, which is why they're in weird places. They are -# needed to escape YAML templating variables, which still allowing cookiecutter to replace the value of the repository name. +# needed to escape YAML templating variables, which still allowing cookieninja to replace the value of the repository name. # Instructions to clear caches: # 1) List all caches for this repo using the Github CLI: gh api -H "Accept: application/vnd.github+json" /repos/Lightmatter/django-hydra/actions/caches @@ -54,7 +54,7 @@ jobs: # Instantiate the project - name: Instantiate project using the values in cookiecutter.json - run: poetry run cookiecutter . --no-input --accept-hooks no + run: poetry run cookininja . --no-input --accept-hooks no # Configure the project environment - uses: actions/setup-node@v3