Skip to content

Commit

Permalink
Merge pull request #301 from tekktrik/dev/print-milestones
Browse files Browse the repository at this point in the history
Readd printing active milestones and their issue counts
  • Loading branch information
tekktrik authored Sep 20, 2022
2 parents 84b22d2 + ab0f0b5 commit eaa233b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions adabot/circuitpython_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ def run_library_checks(validators, kw_args, error_depth):
logger.info("* %s open issues", len(core_insights["open_issues"]))
logger.info(" * https://github.com/adafruit/circuitpython/issues")
logger.info("* %s active milestones", len(core_insights["milestones"]))
for milestone, milestone_issue_count in sorted(core_insights["milestones"].items()):
logger.info(" * %s: %s open issues", milestone, milestone_issue_count)
no_milestone_items = gh_reqs.get(
"/repos/adafruit/circuitpython/issues?milestone=none"
).json()
Expand Down

0 comments on commit eaa233b

Please sign in to comment.