Add skip CI push option to magit

This commit is contained in:
Antoine Martin 2020-10-07 11:09:17 +02:00
parent d76c812ffe
commit 42c432d1d1

View file

@ -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