-
Notifications
You must be signed in to change notification settings - Fork 3
/
fetch_milestone.py
executable file
·55 lines (49 loc) · 1.92 KB
/
fetch_milestone.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python3
import argparse
import re
import sys
import requests
REPOSITORY = 'zauberzeug/livesync'
BASE_URL = f'https://api.github.com/repos/{REPOSITORY}'
parser = argparse.ArgumentParser(description='Fetch the content of a milestone from a GitHub repo.')
parser.add_argument('milestone_title', help='Title of the milestone to fetch.')
args = parser.parse_args()
milestone_title: str = args.milestone_title
milestones = requests.get(f'{BASE_URL}/milestones', timeout=5).json()
matching_milestones = [milestone for milestone in milestones if milestone['title'] == milestone_title]
if not matching_milestones:
print(f'Milestone "{milestone_title}" not found!')
sys.exit(1)
milestone_number = matching_milestones[0]['number']
issues = requests.get(f'{BASE_URL}/issues?milestone={milestone_number}&state=all', timeout=5).json()
notes = {
'New features and enhancements': [],
'Bugfixes': [],
'Documentation': [],
'Others': [],
}
for issue in issues:
title: str = issue['title']
user: str = issue['user']['login']
body: str = issue['body']
labels: list[str] = [label['name'] for label in issue['labels']]
number_patterns = [r'#(\d+)', rf'https://github.com/{REPOSITORY}/(?:issues|discussions|pulls)/(\d+)']
numbers = [issue['number']] + [int(match) for pattern in number_patterns for match in re.findall(pattern, body)]
numbers_str = ', '.join(f'#{number}' for number in sorted(numbers))
note = f'{title.strip()} ({numbers_str} by @{user})'
if 'bug' in labels:
notes['Bugfixes'].append(note)
elif 'enhancement' in labels:
notes['New features and enhancements'].append(note)
elif 'documentation' in labels:
notes['Documentation'].append(note)
else:
notes['Others'].append(note)
for title, notes in notes.items():
if not notes:
continue
print(f'### {title}')
print()
for note in notes:
print(f'- {note}')
print()