We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 703e2e6 commit ef2f914Copy full SHA for ef2f914
helpers.py
@@ -486,7 +486,8 @@ def get_dev_backlog(version):
486
"status",
487
"component",
488
"severity",
489
- "creation_time"
+ "creation_time",
490
+ "keywords",
491
],
492
493
}
release_readiness_criteria.py
@@ -32,7 +32,8 @@
32
33
# Sleep to ensure no exception will raise from Google API due to writes limit
34
time.sleep(40)
35
-top_10_bugs = sort_by_pm_score(get_dev_backlog(""))[:10]
+bugs_for_pm_score = filter_only_bugs(get_dev_backlog(""))
36
+top_10_bugs = sort_by_pm_score(bugs_for_pm_score)[:10]
37
for idx, bug in enumerate(top_10_bugs):
38
row = 10 + idx
39
column = 7
0 commit comments