From 316d0bc820b50cf471516b2f17be7fa9d16034b1 Mon Sep 17 00:00:00 2001 From: GatlenCulp Date: Wed, 29 Jan 2025 19:57:47 -0500 Subject: [PATCH] feat(cookiecutter): Add automatic description to the github upload --- hooks/post_gen_project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index e7f7f9100..15df765b8 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -123,12 +123,14 @@ directory=Path.cwd(), repo_name="{{ cookiecutter.repo_name }}", visibility="private", + description="{{ cookiecutter.description }}", ) # {% elif cookiecutter.version_control == "git (github public)" %} configure_github_repo( directory=Path.cwd(), repo_name="{{ cookiecutter.repo_name }}", visibility="public", + description="{{ cookiecutter.description }}", ) # {% endif %}