From 0f1855e30b2354cf75d714a90ec571d98adef05d Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Mon, 22 Sep 2025 13:53:46 +0100 Subject: [PATCH 1/1] bugwarrior: pull springfield and todos --- Makefile | 4 ++++ bugwarrior/bugwarrior.toml | 42 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 bugwarrior/bugwarrior.toml diff --git a/Makefile b/Makefile index 5a64e88..3c3bb3b 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,10 @@ awesome: $(XDG_CONFIG_HOME) xinit awesome/widgets/net_widgets .PHONY: awesome +bugwarrior: $(XDG_CONFIG_HOME) + ln -sfT $(APATH)/$@ $(XDG_CONFIG_HOME)/$@ +.PHONY: bugwarrior + dircolors: $(XDG_CONFIG_HOME) ln -sfT $(APATH)/dircolors $(XDG_CONFIG_HOME)/dircolors .PHONY: dircolors diff --git a/bugwarrior/bugwarrior.toml b/bugwarrior/bugwarrior.toml new file mode 100644 index 0000000..5a990e1 --- /dev/null +++ b/bugwarrior/bugwarrior.toml @@ -0,0 +1,42 @@ +# vim: set ft=toml: + +[general] +taskrc = "~/.config/task/taskrc" +targets = ["fpp_gitlab", "fpp_gitlab_todo"] + +shorten = false +inline_links = true +annotation_links = true + +[fpp_gitlab] +service = "gitlab" +login = "samir.fpp" +token = "" +host = "gitlab.com" + +include_repos = ["fppnt/sgnss/springfield"] +add_tags = ["work", "gitlab", "{{gitlabtype}}"] + +owned = false +include_issues = true +include_merge_requests = true +include_todos = false +default_issue_priority = "L" +default_mr_priority = "H" + +project_template = "stm.#{{gitlabnumber}}" +description_template = "{{gitlabtitle}}" + +[fpp_gitlab_todo] +service = "gitlab" +login = "samir.fpp" +token = "" +host = "gitlab.com" + +add_tags = ["work", "gitlab"] + +owned = true +include_issues = false +include_merge_requests = false +include_todos = true +default_todo_priority = "M" -- 2.50.1