import os import re # Get the PR number from the PR URL. pr_number = os.environ['PR_URL'].split('/')[-1] changelog_note = f"- Update default CodeQL bundle version to {os.environ['CLI_VERSION']}. [#{pr_number}]({os.environ['PR_URL']})" # If the "[UNRELEASED]" section starts with "no user facing changes", remove that line. with open('CHANGELOG.md', 'r') as f: changelog = f.read() changelog = changelog.replace('## [UNRELEASED]\n\nNo user facing changes.', '## [UNRELEASED]\n') # Add the changelog note to the bottom of the "[UNRELEASED]" section. changelog = re.sub(r'\n## (\d+\.\d+\.\d+)', f'{changelog_note}\n\n## \\1', changelog, count=1) with open('CHANGELOG.md', 'w') as f: f.write(changelog)