Skip to content

Commit b2e782f

Browse files
committed
fix code block
1 parent 4b30b76 commit b2e782f

1 file changed

Lines changed: 28 additions & 18 deletions

File tree

docs/cnv/release-notes/rn-process.md

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -44,32 +44,42 @@ This is a step by step process with commands included. Be sure to replace `4.17`
4444
For builds and tests to be successful in your GitHub pull request, you must open a separate PR to add a placeholder release notes file to the main branch. This is a step by step process with commands included. Be sure to replace `4.18` with the version you are working on.
4545

4646
1. Check out the branch of the new version:
47-
- `$ git checkout main ; git fetch upstream`
4847

49-
2. Create a feature branch off of the main branch:
50-
- `$ git checkout -b CNV-XXXX`
48+
```bash
49+
git checkout main
50+
git fetch upstream
51+
```
5152

52-
3. Create a new placeholder file with the new version name:
53-
- `$ touch virt/release_notes/virt-4-18-release-notes.adoc`
53+
1. Create a feature branch off of the main branch:
5454

55-
4. Place the contents below into that file and save it.
55+
```bash
56+
git checkout -b CNV-XXXX
57+
```
5658

57-
```text
58-
:_mod-docs-content-type: ASSEMBLY
59-
[id="virt-4-18-release-notes"]
60-
= {VirtProductName} release notes
61-
include::_attributes/common-attributes.adoc[]
62-
:context: virt-4-18-release-notes
59+
1. Create a new placeholder file with the new version name:
6360

64-
toc::[]
61+
```bash
62+
touch virt/release_notes/virt-4-18-release-notes.adoc
63+
```
6564

66-
Do not add or edit release notes here. Edit release notes directly in the branch
67-
that they are relevant for.
65+
1. Place the contents below into that file and save it.
6866

69-
This file is here to allow builds to work.
70-
```
67+
```text
68+
:_mod-docs-content-type: ASSEMBLY
69+
[id="virt-4-18-release-notes"]
70+
= {VirtProductName} release notes
71+
include::_attributes/common-attributes.adoc[]
72+
:context: virt-4-18-release-notes
7173
72-
5. Save all changes and submit your pull request. Only merge review from the CNV team is necessary.
74+
toc::[]
75+
76+
Do not add or edit release notes here. Edit release notes directly in the branch
77+
that they are relevant for.
78+
79+
This file is here to allow builds to work.
80+
```
81+
82+
1. Save all changes and submit your pull request. Only merge review from the CNV team is necessary.
7383

7484
**Example PR**: [Link](https://github.com/openshift/openshift-docs/pull/79783)
7585

0 commit comments

Comments
 (0)