Skip to content

Commit afbbbf3

Browse files
Rename docs: fabric-development-process.md, fabric-hybrid-cicd-guide.md, update all cross-references
1 parent e32efc8 commit afbbbf3

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Git repo (dev branch)
4545
| Document | Description |
4646
|---|---|
4747
| [CI/CD Release Options](fabric-cicd-release-options.md) | Evaluates all CI/CD release options for Fabric (Deployment Pipelines, Git-based, Build-based, Hybrid) and recommends the Hybrid approach. **Start here** if you're deciding on a strategy. |
48-
| [Hybrid CI/CD Implementation Guide](hybrid-cicd-implementation-guide.md) | Deep dive into the implementation: workflow structure, sandwich pattern, configuration strategy, prerequisites, setup steps, and gotchas. |
49-
| [Development Process](development-process.md) | How developers work day-to-day: branch-out workflow, environment bootstrap/reset script, and PR validation. |
48+
| [Hybrid CI/CD Implementation Guide](fabric-hybrid-cicd-guide.md) | Deep dive into the implementation: workflow structure, sandwich pattern, configuration strategy, prerequisites, setup steps, and gotchas. |
49+
| [Development Process](fabric-development-process.md) | How developers work day-to-day: branch-out workflow, environment bootstrap/reset script, and PR validation. |
5050

5151
---
5252

@@ -66,7 +66,7 @@ Not all Fabric items can be managed the same way. From a lifecycle management pe
6666

6767
> **Important:** Both supported items lists evolve as Microsoft adds capabilities. Always verify against the official documentation before assuming an item falls into a particular category.
6868
69-
This categorization directly impacts your CI/CD strategy. The [Hybrid CI/CD Implementation Guide](hybrid-cicd-implementation-guide.md) uses the "sandwich pattern" specifically to handle the gap between git-tracked and deployment-pipeline-only items.
69+
This categorization directly impacts your CI/CD strategy. The [Hybrid CI/CD Implementation Guide](fabric-hybrid-cicd-guide.md) uses the "sandwich pattern" specifically to handle the gap between git-tracked and deployment-pipeline-only items.
7070

7171
### Variable Libraries: Dynamic vs Static Metadata
7272

@@ -77,7 +77,7 @@ Some Fabric items resolve environment-specific values **at runtime** through [Va
7777
| **Dynamic (Variable Library)** | The item reads IDs from the Variable Library at runtime. Changing the active value set automatically switches the environment context — no file changes needed. | Notebooks using `notebookutils.variableLibrary.getLibrary()` |
7878
| **Static (hardcoded)** | The item definition contains literal workspace/lakehouse GUIDs that must be rewritten per environment — either at deploy time (via `parameter.yml`) or via script (`branch_env.py`). | Semantic Model Direct Lake URL (`expressions.tmdl`), Notebook META dependency blocks (`default_lakehouse`, `default_lakehouse_workspace_id`) |
7979

80-
When designing your development and CI/CD processes, identify which items in your workspace are dynamic vs static. Static items need either deploy-time parameterization (`parameter.yml` for CI/CD) or script-based rewriting (`branch_env.py` for feature branches). The [Development Process](development-process.md) doc covers how this repo handles both.
80+
When designing your development and CI/CD processes, identify which items in your workspace are dynamic vs static. Static items need either deploy-time parameterization (`parameter.yml` for CI/CD) or script-based rewriting (`branch_env.py` for feature branches). The [Development Process](fabric-development-process.md) doc covers how this repo handles both.
8181

8282
---
8383

@@ -99,7 +99,7 @@ When designing your development and CI/CD processes, identify which items in you
9999
4. Create `dev`, `test`, and `main` branches
100100
5. Develop on `dev`, merge to `test` (triggers Test deploy), merge to `main` (triggers Prod deploy)
101101

102-
For detailed setup instructions, see the [Implementation Guide](hybrid-cicd-implementation-guide.md#prerequisites--setup).
102+
For detailed setup instructions, see the [Implementation Guide](fabric-hybrid-cicd-guide.md#prerequisites--setup).
103103

104104
---
105105

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ microsoft-fabric-sdlc-patterns/
103103
│ └── branch_env.py # Bootstrap/reset feature branch workspace bindings
104104
├── assets/ # Architecture diagrams (SVG)
105105
├── fabric-cicd-release-options.md # CI/CD strategy and release option comparison
106-
├── hybrid-cicd-implementation-guide.md # This file
107-
├── development-process.md # Feature branch development process
106+
├── fabric-hybrid-cicd-guide.md # This file
107+
├── fabric-development-process.md # Development process
108108
└── README.md # Repository landing page
109109
```
110110

0 commit comments

Comments
 (0)