From 85a38e9fd43d4946352508c6778d7ddf2a10efc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Mon, 7 Mar 2022 21:41:59 -0500 Subject: [PATCH] Add a common task alias and a couple internal task shortcuts --- pomodoro_to_harvest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pomodoro_to_harvest.py b/pomodoro_to_harvest.py index b44c0f0..16e7582 100644 --- a/pomodoro_to_harvest.py +++ b/pomodoro_to_harvest.py @@ -139,6 +139,8 @@ compound_project_tasks = { "Internal — Contributing back to the community": ["Contrib", "Agaric: contrib", "Contributing", "Agaric contrib", "Agaric contributions"], "Internal — Conferences & Meetups": ["Conference", "Camps", "Camp", "Conferences", "meetup", "meetups"], "Internal — Documentation": ["documentation", "docs", "documenting"], + "Internal — Other": ["other"], + "Internal — Overhead": ["overhead"], "Internal — Personal Learning": ["Learning", "Personal learning"], "Internal — Presentations": ["presentations", "presentation"], "Internal — Network Engagement": ["Network Engagement", "network engagement", "Network engagment", "Social media", "Network building", "Agaric network engagement", "AgaricNetwork Engagement"], @@ -217,6 +219,7 @@ subproject_names = { "Contributing back to the community": ["contrib", "contributing", "contributions"], "Not billed": ["nb"], "Planning": ["plan", "meeting", "pm", "project management"], + "Quality Assurance": ["qa", "quality"], } for preferred, alternatives in subproject_names.items(): alternatives.append(preferred)