From 97126e03730a9a7bcc6468375e704f73851c2414 Mon Sep 17 00:00:00 2001 From: Denis Gorbachev <829578+DenisGorbachev@users.noreply.github.com> Date: Mon, 29 Jul 2024 08:19:49 +0700 Subject: [PATCH] fix: use conventional commit message --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b49aee..bbe75fa 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ Options: --repo-commit-args Shell command to make a commit (supports substitutions - see help below) - [default: "git commit -m \"Setup project\""] + [default: "git commit -m \"feat: setup project\""] --repo-push-args Shell command to push the commit (supports substitutions - see help below) diff --git a/src/lib.rs b/src/lib.rs index 759a444..606c707 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -88,7 +88,7 @@ pub struct CreateRustGithubRepo { #[arg(long, help = "Shell command to add new files (supports substitutions - see help below)", default_value = "git add .")] repo_add_args: String, - #[arg(long, help = "Shell command to make a commit (supports substitutions - see help below)", default_value = "git commit -m \"Setup project\"")] + #[arg(long, help = "Shell command to make a commit (supports substitutions - see help below)", default_value = "git commit -m \"feat: setup project\"")] repo_commit_args: String, #[arg(long, help = "Shell command to push the commit (supports substitutions - see help below)", default_value = "git push")]