Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Sep 13, 2024
1 parent 5a9b967 commit 308248e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions create-prs-to-update-vcs-repositories/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ None.

## What kind of tags are handled

- 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).
- 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:

```
"0.0.1", # match
"0.1.0", # match
Expand All @@ -83,19 +84,22 @@ None.
```
## What kind of version update is possible?
- 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):
```
0.0.1 => 0.0.2
1.1.1 => 1.2.1
2.4.3 => 3.0.0
```
- Invalid ones (PR is not created):
- Invalid ones (PR is not created):
```
main => 0.0.1
v0.0.1 => 0.0.2
xxx-0.0.1 => 0.0.9
0.0.1-rc1 => 0.0.2
```
```

0 comments on commit 308248e

Please sign in to comment.