mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
add script to add links in changelog
This commit is contained in:
parent
4416c9e4bc
commit
0881068d76
13
scripts/linkify_changelog.py
Normal file
13
scripts/linkify_changelog.py
Normal file
@ -0,0 +1,13 @@
|
||||
import fileinput
|
||||
import re
|
||||
|
||||
# This script goes through the provided file, and replaces any " \#<number>",
|
||||
# with the valid mark down formatted link to it. e.g.
|
||||
# " [\#number](https://github.com/tendermint/tendermint/issues/<number>)
|
||||
# Note that if the number is for a PR, github will auto-redirect you when you click the link.
|
||||
# It is safe to run the script multiple times in succession.
|
||||
#
|
||||
# Example usage $ python3 linkify_changelog.py ../CHANGELOG_PENDING.md
|
||||
for line in fileinput.input(inplace=1):
|
||||
line = re.sub(r"\s\\#([0-9]*)", r" [\\#\1](https://github.com/tendermint/tendermint/issues/\1)", line.rstrip())
|
||||
print(line)
|
Loading…
x
Reference in New Issue
Block a user