Skip to content

Commit 49d27b1

Browse files
committed
Fixed issues
1 parent 889726e commit 49d27b1

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

learn-pr/wwl-data-ai/implement-cicd-in-fabric/5-automate-cicd-using-fabric-apis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ metadata:
88
author: wwlpublish
99
ms.author: theresai
1010
ms.topic: unit
11-
durationInMinutes: 20
11+
durationInMinutes: 5
1212
content: |
1313
[!include[](includes/5-automate-cicd-using-fabric-apis.md)]

learn-pr/wwl-data-ai/implement-cicd-in-fabric/7-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ quiz:
3232
- content: To sync content between the workspace and Git, ensuring they have the same content.
3333
isCorrect: true
3434
explanation: Correct. Connecting a Fabric workspace to a Git repository allows for synchronization of content between the two, ensuring they have the same content.
35-
- content: To allow multiple developers to work on the same code simultaneously without conflicts
35+
- content: To allow multiple developers to work on the same code simultaneously without conflicts.
3636
isCorrect: false
3737
explanation: Incorrect. While Git does allow multiple developers to work simultaneously, the connection of a Fabric workspace to a Git repository isn't primarily for this purpose.
3838

learn-pr/wwl-data-ai/implement-cicd-in-fabric/includes/2-understand-cicd.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
When you and members of your team are each responsible developing and maintaining different parts of your Fabric environment, a best practice is to work in isolated development environments until you're ready to combine your development efforts and publish your changes to a particular pre-production environment. When you're ready to publish your changes, you need to make sure that your changes don't break existing code or interfere with changes made by other developers. There's also a need to ensure that code changes are saved and can be reverted if there are issues. The built-in continuous integration and continuous delivery capabilities in Fabric can help facilitate this.
22

3-
## Understand Continuous Integration and Continuous Delivery/Deployment (CI/CD)
43
Continuous integration and continuous delivery is a process for integrating code contributions from multiple developers into a main codebase. Contributions are frequently committed, and automated processes build and test the new code. Code is continuously moving into production, reducing feature development time.
54

65
### Continuous integration

learn-pr/wwl-data-ai/implement-cicd-in-fabric/includes/3-implement-version-control-and-git-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To synchronize the workspace and repository:
3131
:::image type="content" source="../media/git-status.png" alt-text="Screenshot of uncommitted changes in workspace." :::
3232

3333
## Branching scenarios
34-
Changes that you make to a workspace when you're doing development work affect all other workspace users so it's best to work in isolation outside of shared workspaces. To keep your development work isolated from shared workspaces, you can develop using:
34+
Changes that you make to a workspace when you're doing development work affect all other workspace users so it's a best practice to work in isolation outside of shared workspaces. To keep your development work isolated from shared workspaces, you can develop using:
3535
- A separate, isolated workspace
3636
- Client tools like Power BI Desktop for reports and semantic models or VS Code for Notebooks.
3737

@@ -52,7 +52,7 @@ For development using a separate, isolated workspace:
5252
4. Then, *in Git*, create a **Pull Request (PR)** to pull the changes from your isolated branch into the main branch.
5353
5. The main branch in Git will be updated once the PR is merged to the main branch. When you open the *shared* development workspace, you'll be prompted to synchronize the new content from Git with the shared development workspace.
5454

55-
Use client tools for development. The process is similar to that when developing in the Fabric web interface.
55+
When using client tools for development, the process is similar to that when developing in the Fabric web interface.
5656

5757
1. Connect a development workspace to the main branch, following the instructions in the section on this page entitled "Connect a Fabric workspace to a Git repository".
5858
2. Clone the repository on your local machine.

0 commit comments

Comments
 (0)