summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-12-22 05:44:47 +1100
committerGitHub <noreply@github.com>2021-12-22 05:44:47 +1100
commit7b018f097db2d219908f74eb7a406ae5f7f93f46 (patch)
tree5c8682a707495296ba7cc7374e94d8879aabe2d2 /lib
parentb6bd01aa8b15931b93dff85725c171579b483d9c (diff)
Use the PR title rather than parsing the commit message. (#15537)
Diffstat (limited to 'lib')
-rwxr-xr-xlib/python/qmk/cli/generate/develop_pr_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/generate/develop_pr_list.py b/lib/python/qmk/cli/generate/develop_pr_list.py
index 07e46752a6..fab0262773 100755
--- a/lib/python/qmk/cli/generate/develop_pr_list.py
+++ b/lib/python/qmk/cli/generate/develop_pr_list.py
@@ -97,7 +97,7 @@ def generate_develop_pr_list(cli):
match = git_expr.search(line)
if match:
pr_info = _get_pr_info(cache, gh, match.group("pr"))
- commit_info = {'hash': match.group("hash"), 'title': match.group("title"), 'pr_num': int(match.group("pr")), 'pr_labels': [label.name for label in pr_info.labels.items]}
+ commit_info = {'hash': match.group("hash"), 'title': pr_info['title'], 'pr_num': int(match.group("pr")), 'pr_labels': [label.name for label in pr_info.labels.items]}
_categorise_commit(commit_info)
def _dump_commit_list(name, collection):