diff --git a/docs/development/assets/renovate-flow.md b/docs/development/assets/renovate-flow.md index 6955bfd235a4240ce409dd4fd53c4b183cb82de1..a7e2ab1d76fa51be81cfec632b6b0673da06d925 100644 --- a/docs/development/assets/renovate-flow.md +++ b/docs/development/assets/renovate-flow.md @@ -35,9 +35,11 @@ flowchart TB subgraph extractDependencies Z[repository/process/index.ts] Z --> AA[read dashboard body, put it into config] - Z --> AB[ for each config.basebranches] - AB --> |if exists| AC[getBaseBranch and extract all dependencies from managers] - AB --> |if exists| AD[getBaseBranch and lookup new dependency versions] + Z --> QM{if config.basebranches exists} + QM --> |yes| AB[for each config.basebranches] + AB --> AC[getBaseBranch and extract all dependencies from managers] + AB --> AD[getBaseBranch and lookup new dependency versions] + QM --> |no| AE[extract and lookup] end subgraph updateRepository