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" ''; }; }; } -