Skip to content

Commit

Permalink
fix(create-prs-to-update-vcs-repositories): specify language for fenc…
Browse files Browse the repository at this point in the history
…ed code block

Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp>
  • Loading branch information
sasakisasaki committed Sep 13, 2024
1 parent 5a9b967 commit f3159da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions create-prs-to-update-vcs-repositories/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ None.

- Monitors all vcs-imported repositories in the ```autoware.repos``` (if default) which have a version with regular expression pattern ```r'\b(?<![^\s])\d+\.\d+\.\d+(?![-\w.+])\b'``` (if default).
- This pattern match/mismatches for the following examples:
```
```plaintext
"0.0.1", # match
"0.1.0", # match
"1.0.0", # match
Expand All @@ -86,14 +86,14 @@ None.
- If there is a new version with pattern matched in the vcs-imported repositories, create a PR for each repository, respectively.
- The valid/invalid version update cases are as follows:
- Valid ones (PR must be created):
```
```plaintext
0.0.1 => 0.0.2
1.1.1 => 1.2.1
2.4.3 => 3.0.0
```

- Invalid ones (PR is not created):
```
```plaintext
main => 0.0.1
v0.0.1 => 0.0.2
xxx-0.0.1 => 0.0.9
Expand Down

0 comments on commit f3159da

Please sign in to comment.