From c59f0f334900ee13299b869cbcba1a12158e402b Mon Sep 17 00:00:00 2001 From: cor Date: Thu, 7 Sep 2023 21:40:59 +0200 Subject: [PATCH] feat(todo-comment): first release --- tools/todo-comment.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/todo-comment.nix b/tools/todo-comment.nix index f859e5de94..f3ef391c5b 100644 --- a/tools/todo-comment.nix +++ b/tools/todo-comment.nix @@ -6,11 +6,10 @@ name = "tdc"; runtimeInputs = with pkgs; [ gh coreutils ]; text = '' - TODO_ID=$(gh issue create -t "$1" -b "_Generated by Union's \'todo-comment\' app_" --label "todo comment" -a "@me" | tail -n 1 | sed 's|https://github.com/\(.*\)/issues/\(.*\)|\1#\2|'); + TODO_ID=$(gh issue create -t "$1" -b "_Generated by the devShell's \`tdc\` cli_" --label "todo comment" -a "@me" | tail -n 1 | sed 's|https://github.com/\(.*\)/issues/\(.*\)|\1#\2|'); echo "TODO($TODO_ID): $1" ''; }; }; } -