Conversation
WalkthroughThis update adds Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
participant CI as CI/CD Pipeline
participant PIP as pip installer
participant Includes as foliantcontrib.includes
participant Utils as foliantcontrib.utils
participant YAMLInclude as foliantcontrib.yaml_include
participant Foliant as Foliant Build
Note over CI,YAMLInclude: Dependency installation phase (requirements_force_reinstall.txt)
CI->>PIP: install --force-reinstall requirements
activate PIP
PIP->>Includes: install foliantcontrib.includes >= 1.1.21
Includes-->>PIP: installed ✓
PIP->>Utils: install foliantcontrib.utils >= 1.0.8
Utils-->>PIP: installed ✓
PIP->>YAMLInclude: install foliantcontrib.yaml_include >= 1.0.1 (NEW)
YAMLInclude-->>PIP: installed ✓
deactivate PIP
PIP-->>CI: all dependencies ready
Note over CI,Foliant: Documentation build phase
CI->>Foliant: trigger doc build
activate Foliant
Foliant->>Includes: process file includes
Includes->>Utils: shared utilities
Utils-->>Includes: utilities provided
Includes-->>Foliant: includes resolved
Foliant->>YAMLInclude: process YAML include directives (NEW)
YAMLInclude-->>Foliant: YAML content resolved
Foliant-->>CI: build complete
deactivate Foliant
🔗 Cross-Repository Impact AnalysisEnable automatic detection of breaking changes across your dependent repositories. → Set up now Learn more about Cross-Repository AnalysisWhat It Does
How to Enable
Benefits
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
EntelligenceAI PR Summary
This PR adds
foliantcontrib.yaml_include >= 1.0.1to the force-reinstall Python dependencies list.foliantcontrib.yaml_include >= 1.0.1todependency_files/python_packages/requirements_force_reinstall.txtfoliantcontrib.includesandfoliantcontrib.utilsConfidence Score: 5/5 - Safe to Merge