Skip to content

Commit c6cf6fd

Browse files
authored
Merge pull request #2138 from jsoref/update-release-branch-backticks-for-branch
Add backticks around branch in update-release-branch PR template
2 parents 7b30fef + 427cfbe commit c6cf6fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/update-release-branch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def open_pr(
6060

6161
# Start constructing the body text
6262
body = []
63-
body.append(f'Merging {source_branch_short_sha} into {target_branch}.')
63+
body.append(f'Merging {source_branch_short_sha} into `{target_branch}`.')
6464

6565
body.append('')
6666
body.append(f'Conductor for this PR is @{conductor}.')
@@ -92,7 +92,7 @@ def open_pr(
9292
'branch to resolve the merge conflicts.')
9393
body.append(' - [ ] Ensure the CHANGELOG displays the correct version and date.')
9494
body.append(' - [ ] Ensure the CHANGELOG includes all relevant, user-facing changes since the last release.')
95-
body.append(f' - [ ] Check that there are not any unexpected commits being merged into the {target_branch} branch.')
95+
body.append(f' - [ ] Check that there are not any unexpected commits being merged into the `{target_branch}` branch.')
9696
body.append(' - [ ] Ensure the docs team is aware of any documentation changes that need to be released.')
9797

9898
if not is_primary_release:

0 commit comments

Comments
 (0)