Merge pull request 'Refactoring draft notes generation' (#4) from feature/fix-notes into main
Reviewed-on: #4
This commit is contained in:
commit
4a59bc6e88
|
@ -49,8 +49,8 @@ def draft():
|
||||||
|
|
||||||
# Get the current and previous tags
|
# Get the current and previous tags
|
||||||
tags = subprocess.check_output(["git", "tag", "--sort=creatordate"], text=True)
|
tags = subprocess.check_output(["git", "tag", "--sort=creatordate"], text=True)
|
||||||
if tags:
|
|
||||||
tags = [tag for tag in tags.split("\n") if tag]
|
tags = [tag for tag in tags.split("\n") if tag]
|
||||||
|
if len(tags) > 1:
|
||||||
tags.reverse()
|
tags.reverse()
|
||||||
current_tag, previous_tag, *_ = tags
|
current_tag, previous_tag, *_ = tags
|
||||||
formatted_lines = subprocess.check_output(["git", "log", f"{current_tag}...{previous_tag}", f'--pretty=format:"* %s"'], text=True)
|
formatted_lines = subprocess.check_output(["git", "log", f"{current_tag}...{previous_tag}", f'--pretty=format:"* %s"'], text=True)
|
||||||
|
|
Loading…
Reference in New Issue