dev(ci): comment out unused CI config

Until 'doom make {docs,codeowners}' are done, they'd throw errors.
This commit is contained in:
Henrik Lissner 2022-06-19 22:18:46 +02:00
parent 12e9b4422f
commit d002e4c89d
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

21
ci.el
View file

@ -18,18 +18,19 @@
(after! core-cli-make (after! core-cli-make
;;; Codeowners ;;; Codeowners
(dolist (path (cdr (doom-module-load-path (list doom-modules-dir)))) ;; (dolist (path (cdr (doom-module-load-path (list doom-modules-dir))))
(save-match-data ;; (save-match-data
(when (string-match "/modules/\\([^/]+\\)/\\([^/]+\\)/$" path) ;; (when (string-match "/modules/\\([^/]+\\)/\\([^/]+\\)/$" path)
(add-to-list 'doom-make-codeowners ;; (add-to-list 'doom-make-codeowners
(cons (format "%s*" (substring (match-string 0 path) 1)) ;; (cons (format "%s*" (substring (match-string 0 path) 1))
(list "@doomemacs/maintainers" ;; (list "@doomemacs/maintainers"
(format "@doomemacs/%s-%s" ;; (format "@doomemacs/%s-%s"
(match-string 1 path) ;; (match-string 1 path)
(match-string 2 path)))))))) ;; (match-string 2 path))))))))
;;; Documentation exporters ;;; Documentation exporters
(add-to-list 'doom-ci-docs-title-replace '("^Doom Emacs " . ""))) ;; (add-to-list 'doom-ci-docs-title-replace '("^Doom Emacs " . ""))
)
;;; Helpers ;;; Helpers