From 26355acb99f2221125a8b9e6d3e8a9cb0192e54d Mon Sep 17 00:00:00 2001 From: oliverhnat Date: Tue, 13 Jan 2026 14:51:08 +0100 Subject: [PATCH] feat(custom-commands): add gcmr command to create MR on github --- omz-custom/custom_commands.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/omz-custom/custom_commands.sh b/omz-custom/custom_commands.sh index e569b8c..ad804b7 100644 --- a/omz-custom/custom_commands.sh +++ b/omz-custom/custom_commands.sh @@ -162,6 +162,16 @@ function dbar() { } +function gcmr() { + if [[ "$*" == "--draft" ]] + then + draft="--draft" + else + draft="" + fi + gh pr create -a "@me" --fill -y $draft +} + function cmr() { if [[ "$*" == "--draft" ]] then