From 6dd11f73d3efbb5672fea265c864229d3f51e9fe Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Wed, 5 Nov 2025 11:34:26 +0000 Subject: [PATCH] Update .github/workflows/script/bundle_changelog.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/script/bundle_changelog.py | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/script/bundle_changelog.py b/.github/workflows/script/bundle_changelog.py index 71fa8c9c4..8a7135f1e 100644 --- a/.github/workflows/script/bundle_changelog.py +++ b/.github/workflows/script/bundle_changelog.py @@ -6,7 +6,6 @@ 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. -# Use perl to avoid having to escape the newline character. with open('CHANGELOG.md', 'r') as f: changelog = f.read()