Lines Matching full:issues
4 Generate a summary of last week's issues tagged with "topic: feature".
6 The summary will include a list of new and changed issues and is sent each
20 ISSUES_API_URL = "https://api.github.com/repos/python/typing/issues"
21 ISSUES_URL = "https://github.com/python/typing/issues?q=label%3A%22topic%3A+feature%22"
39 issues = fetch_issues(since)
40 new, updated = split_issues(issues, since)
50 """Return (new, updated) issues."""
80 issues: Iterable[Issue], since: datetime.date
84 for issue in issues:
99 print(f"Subject: Opened and changed typing issues week {since:%G-W%V}")
107 "No issues or pull requests with the label 'topic: feature' were opened\n"
112 "The following is an overview of all issues and pull requests in the\n"
114 "that were opened or updated last week, excluding closed issues.\n\n"
118 s += "The following issues and pull requests were opened last week: \n\n"
122 s += "The following issues and pull requests were updated last week: \n\n"
126 "All issues and pull requests with the label 'topic: feature'\n"