From 42c432d1d19b64ca12b2e96170af067484ad2bd6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 7 Oct 2020 11:09:17 +0200 Subject: [PATCH] Add skip CI push option to magit --- config.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.org b/config.org index dbb4555..540502d 100644 --- a/config.org +++ b/config.org @@ -36,6 +36,7 @@ - [[#org-roam-server][Org Roam Server]] - [[#export-backends][Export backends]] - [[#doom-specific][Doom specific]] +- [[#magit][Magit]] * Misc @@ -470,3 +471,11 @@ one. Taken from [[https://github.com/hlissner/doom-emacs/tree/develop/modules/la (after! evil-org (remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)) #+END_SRC + +* Magit + +#+BEGIN_SRC emacs-lisp +(after! magit + (transient-append-suffix 'magit-push "-n" + '(4 "-s" "Skip GitLab CI" "--push-option=ci.skip"))) +#+END_SRC