Browse Source

Release message changelog link fix (#3519)

bucky/ws
Greg Szabo 6 years ago
committed by Ethan Buchman
parent
commit
e4a03f249d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/release_management/github-draft.py

+ 1
- 1
scripts/release_management/github-draft.py View File

@ -34,7 +34,7 @@ def create_draft(org,repo,branch,version):
'tag_name': version, 'tag_name': version,
'target_commitish': '{0}'.format(branch), 'target_commitish': '{0}'.format(branch),
'name': '{0} (WARNING: ALPHA SOFTWARE)'.format(version), 'name': '{0} (WARNING: ALPHA SOFTWARE)'.format(version),
'body': '<a href=https://github.com/{0}/{1}/blob/master/CHANGELOG.md#{2}>https://github.com/{0}/{1}/blob/master/CHANGELOG.md#{2}</a>'.format(org,repo,version.replace('v','').replace('.','')),
'body': '<a href=https://github.com/{0}/{1}/blob/{2}/CHANGELOG.md#{3}>https://github.com/{0}/{1}/blob/{2}/CHANGELOG.md#{3}</a>'.format(org,repo,branch,version.replace('.','')),
'draft': True, 'draft': True,
'prerelease': False 'prerelease': False
} }


Loading…
Cancel
Save