blob: c30c3ef1f33fff7470c7eb917f9bdc9237ae04f0 (
plain)
| 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
 | #!/usr/bin/env python3
import re
import sys
import requests
from pprint import pprint
# Use the same regex for PR title and commit messages for now
title_regex = r'^(([a-zA-Z]+:\s)?)T\d+:\s+[^\s]+.*'
commit_regex = title_regex
def check_pr_title(title):
    if not re.match(title_regex, title):
        print("PR title '{}' does not match the required format!".format(title))
        print("Valid title example: T99999: make IPsec secure")
        sys.exit(1)
def check_commit_message(title):
    if not re.match(commit_regex, title):
        print("Commit title '{}' does not match the required format!".format(title))
        print("Valid title example: T99999: make IPsec secure")
        sys.exit(1)
if __name__ == '__main__':
    if len(sys.argv) < 2:
        print("Please specify pull request URL!")
        sys.exit(1)
    # Get the pull request object
    pr = requests.get(sys.argv[1]).json()
    if "title" not in pr:
        print("Did not receive a valid pull request object, please check the URL!")
        sys.exit(1)
    check_pr_title(pr["title"])
    # Get the list of commits
    commits = requests.get(pr["commits_url"]).json()
    for c in commits:
        # Retrieve every individual commit and check its title
        co = requests.get(c["url"]).json()
        check_commit_message(co["commit"]["message"])
 |