Skip to content

Commit

Permalink
Add tools and libraries team to trello (#6968)
Browse files Browse the repository at this point in the history
* Add tools and libraries team to trello

* Fix style
  • Loading branch information
ChristineTChen authored Jun 24, 2020
1 parent f7534a9 commit fdc8bce
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,15 @@ def testable(ctx: click.Context, base_ref: str, target_ref: str, milestone: str,
return

if repo == 'integrations-core':
options = {'1': 'Integrations', '2': 'Containers', '3': 'Core', '4': 'Platform', 's': 'Skip', 'q': 'Quit'}
options = {
'1': 'Integrations',
'2': 'Containers',
'3': 'Core',
'4': 'Platform',
'5': 'Tools and Libraries',
's': 'Skip',
'q': 'Quit',
}
else:
options = {
'1': 'Core',
Expand All @@ -215,6 +223,7 @@ def testable(ctx: click.Context, base_ref: str, target_ref: str, milestone: str,
'6': 'Processes',
'7': 'Trace',
'8': 'Integrations',
'9': 'Tools and Libraries',
's': 'Skip',
'q': 'Quit',
}
Expand Down
3 changes: 3 additions & 0 deletions datadog_checks_dev/datadog_checks/dev/tooling/trello.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def __init__(self, config):
'Networks': '5e1de8cf867357791ec5ee47',
'Processes': '5aeca4c8621e4359b9cb9c27',
'Trace': '5bcf3ffbe0651642ae029038',
'Tools and Libraries': '5ef373fb33b7b805120d5011',
}
self.label_team_map = {
'team/agent-apm': 'Trace',
Expand All @@ -35,6 +36,7 @@ def __init__(self, config):
'team/container-app': 'Container App',
'team/integrations': 'Integrations',
'team/logs': 'Logs',
'team/tools-and-libraries': 'Tools and Libraries',
}
self.label_map = {
'Containers': '5e7910856f8e4363e3b51708',
Expand All @@ -46,6 +48,7 @@ def __init__(self, config):
'Networks': '5e79109821620a60014fc016',
'Processes': '5e7910789f92a918152b700d',
'Trace': '5c050640ecb34f0915ec589a',
'Tools and Libraries': '5ab12740841642c2a8829053',
}
self.progress_columns = {
'55d1fe4cd3192ab85fa0f7ea': 'In Progress', # INPROGRESS
Expand Down

0 comments on commit fdc8bce

Please sign in to comment.