Skip to content

Commit

Permalink
Update update_changelog.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rtibbles authored Aug 8, 2024
1 parent cb982c0 commit 3e7c08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
description = """${{ github.event.pull_request.body }}"""
capture = re.compile("<!-- \[DO NOT REMOVE-USED BY GH ACTION\] CHANGELOG START -->\s+<!--(\n|.)+?(?=- \*\*Description)(?P<body>(\n|.)+?(?=<!-- \[DO NOT REMOVE-USED BY GH ACTION\] CHANGELOG END -->))")
match = capture.search(description)
changelog = match.groupsdict()["body"].strip()
changelog = match.groupdict()["body"].strip()
final_changelog = "<!-- [DO NOT REMOVE-USED BY GH ACTION] PASTE CHANGELOG -->\n\n"
Expand Down

0 comments on commit 3e7c08d

Please sign in to comment.