-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate_pull_request.py
executable file
·56 lines (42 loc) · 1.36 KB
/
validate_pull_request.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
56
import json
import re
from urllib.request import urlopen
from os import environ
# check for the directory of the new problem
# we'll need to fetch the pull request and extract the name and topic
# need problem topic and name
# probably need to convert them to the appropriate case (kabab)
# read the readme and validate it
# check for proper title
# check for difficulty
# check something in problem
# check for something in solutions
# check for valid links to solutions
pr_number = environ["INPUT_PR_NUMBER"]
pr_data = json.load(
urlopen(
"https://api.github.com/repos/saulmaldonado/ds-and-algorithms/pulls/{}".format(
pr_number
)
)
)
# mock request
# pr_data = json.load(
# urlopen("https://api.github.com/repos/saulmaldonado/ds-and-algorithms/pulls/24")
# )
def get_field(field: str, body: str) -> str:
field_patterns = {"title": r"(# Title(\r\n){2,})([\w ]+)"}
try:
title_match = re.match(field_patterns[field], body)
assert title_match != None
return title_match.group(3)
except AssertionError:
raise Exception(
"{} was not found in pull request body. Refer to the PULL_REQUEST_TEMPLATE.".format(
field.capitalize()
)
) from None
except:
raise
problem_data = {"title": get_field("title", pr_data["body"])}
print(problem_data)