Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions copier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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?"
Expand Down Expand Up @@ -97,6 +92,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('.', '_')}}"
Expand Down
Loading