From d002e4c89d33b5c76ab1f0bce847785c8a354cf5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 19 Jun 2022 22:18:46 +0200 Subject: [PATCH] dev(ci): comment out unused CI config Until 'doom make {docs,codeowners}' are done, they'd throw errors. --- ci.el | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/ci.el b/ci.el index 45b14c8b6..dcb4b1168 100644 --- a/ci.el +++ b/ci.el @@ -18,18 +18,19 @@ (after! core-cli-make ;;; Codeowners - (dolist (path (cdr (doom-module-load-path (list doom-modules-dir)))) - (save-match-data - (when (string-match "/modules/\\([^/]+\\)/\\([^/]+\\)/$" path) - (add-to-list 'doom-make-codeowners - (cons (format "%s*" (substring (match-string 0 path) 1)) - (list "@doomemacs/maintainers" - (format "@doomemacs/%s-%s" - (match-string 1 path) - (match-string 2 path)))))))) + ;; (dolist (path (cdr (doom-module-load-path (list doom-modules-dir)))) + ;; (save-match-data + ;; (when (string-match "/modules/\\([^/]+\\)/\\([^/]+\\)/$" path) + ;; (add-to-list 'doom-make-codeowners + ;; (cons (format "%s*" (substring (match-string 0 path) 1)) + ;; (list "@doomemacs/maintainers" + ;; (format "@doomemacs/%s-%s" + ;; (match-string 1 path) + ;; (match-string 2 path)))))))) ;;; Documentation exporters - (add-to-list 'doom-ci-docs-title-replace '("^Doom Emacs " . ""))) + ;; (add-to-list 'doom-ci-docs-title-replace '("^Doom Emacs " . "")) + ) ;;; Helpers