From 927bb5f37b49d0a0faffa7225ef6488de3f12c80 Mon Sep 17 00:00:00 2001 From: StinkyLord <42116482+PhilipAbed@users.noreply.github.com> Date: Mon, 11 Apr 2022 14:37:42 +0300 Subject: [PATCH] docs: improve renovate flow graph (#15043) --- docs/development/assets/renovate-flow.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/development/assets/renovate-flow.md b/docs/development/assets/renovate-flow.md index 6955bfd235..a7e2ab1d76 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 -- GitLab