From 6ec272f74f6c941ac9e20879a7f09ab532ea6c67 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Wed, 27 Aug 2025 21:40:36 +0200 Subject: [PATCH] style: :art: group 'config' copier 'questions' to bottom of file --- copier.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/copier.yaml b/copier.yaml index ebbd734..b0f0a05 100644 --- a/copier.yaml +++ b/copier.yaml @@ -55,11 +55,6 @@ is_seedcase_project: help: "Is this package part of the Seedcase Project?" default: true -github_repo: - type: str - default: "{{ _copier_conf.dst_path | realpath | basename }}" - when: false - github_user: type: str help: "What is the name of the GitHub user or organisation where the repository will be or is stored?" @@ -102,6 +97,13 @@ github_board_number: The board number must be an integer. {% endif %} +# Configurations not asked + +github_repo: + type: str + default: "{{ _copier_conf.dst_path | realpath | basename }}" + when: false + github_repo_snake_case: type: str default: "{{github_repo | replace('-', '_') | replace('.', '_')}}"