<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Best practices for GitHub versioning with Fabric deployment pipelines across dev/test/prod in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4791908#M11605</link>
    <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1328402" data-lia-user-login="ndamoi" class="lia-mention lia-mention-user"&gt;ndamoi&lt;/a&gt;, &lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum. Please consider the below points:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Connect your development workspace to the develop branch in GitHub for version control. Use feature branches for new work, merging into develop via pull requests (PRs) to ensure collaboration and code quality. Sync the dev workspace after merges to reflect changes.&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI&gt;Deploy content from dev to test, then test to prod, using Fabric deployment pipelines instead of linking test/prod workspaces to Git. This avoids synchronization issues from manual branch switching and leverages pipelines for controlled consistent deployments.&lt;/LI&gt;
&lt;LI&gt;For releases, create a release/v1.0.0 branch from develop, deploy from the dev workspace to test via the pipeline and validate changes. After testing, merge the release branch into main and deploy from test to prod using the pipeline, ensuring a stable production rollout.&lt;/LI&gt;
&lt;LI&gt;For hotfixes, create a hotfix/v1.0.1 branch from main. Develop and test in the dev workspace or a temporary one, then merge into main and develop. Deploy to test and prod via the pipeline, eliminating the need for new workspaces unless isolation is critical.&lt;/LI&gt;
&lt;LI&gt;Use separate databases for dev/test/prod to protect production data. Apply parameters and deployment rules for environment-specific configurations (e.g., data sources). Make small, frequent commits to minimize conflicts, and consider GitHub Actions to automate PR validation and pipeline deployments for efficiency.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Refer the below official docs:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/best-practices-cicd" target="_blank"&gt;Best Practices for CI/CD&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/deployment-pipelines/intro-to-deployment-pipelines?tabs=new-ui" target="_blank"&gt;Introduction to Deployment Pipelines&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/git-deployment-pipelines" target="_blank"&gt;Git Integration and Deployment Pipelines&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/manage-deployment" target="_blank"&gt;Manage Deployment&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Ganesh Singamshetty.&lt;/P&gt;</description>
    <pubDate>Sat, 09 Aug 2025 08:07:32 GMT</pubDate>
    <dc:creator>v-ssriganesh</dc:creator>
    <dc:date>2025-08-09T08:07:32Z</dc:date>
    <item>
      <title>Best practices for GitHub versioning with Fabric deployment pipelines across dev/test/prod</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4791024#M11597</link>
      <description>&lt;P&gt;&lt;!--  StartFragment   --&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hello all, I hope you're well!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I'm currently trying to manage my environments using &lt;STRONG&gt;GitHub for version control&lt;/STRONG&gt; and &lt;STRONG&gt;Microsoft Fabric's deployment pipelines&lt;/STRONG&gt;. I have my &lt;STRONG&gt;development workspace linked to GitHub&lt;/STRONG&gt;, specifically to the &lt;STRONG&gt;develop&lt;/STRONG&gt; branch. My &lt;STRONG&gt;test and prod workspaces&lt;/STRONG&gt;, however, are not linked to the repo—they're only part of the deployment pipeline.&lt;/P&gt;&lt;P&gt;My initial idea was:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Finish work on &lt;STRONG&gt;develop&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Create a &lt;STRONG&gt;release&lt;/STRONG&gt; branch&lt;/LI&gt;&lt;LI&gt;Link the test workspace to that &lt;STRONG&gt;release&lt;/STRONG&gt; branch&lt;/LI&gt;&lt;LI&gt;If testing goes well, merge the &lt;STRONG&gt;release&lt;/STRONG&gt; branch into &lt;STRONG&gt;main&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Link the prod workspace to &lt;STRONG&gt;main&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;But now I’m realizing this might not be the right approach. The &lt;STRONG&gt;deployment pipeline doesn’t seem to recognize files from different branches&lt;/STRONG&gt;, and I’m concerned that &lt;STRONG&gt;unsupported items &lt;/STRONG&gt;(for git)&amp;nbsp;might not deploy (via pipelines) properly when switching branches. I also worry about &lt;STRONG&gt;breaking workspace tracking&lt;/STRONG&gt; if I manually switch branches or link workspaces outside the pipeline.&lt;/P&gt;&lt;P&gt;I was interested in using the&amp;nbsp;&lt;STRONG&gt;Git Flow&lt;/STRONG&gt;&amp;nbsp;concept to manage features, releases, and hotfixes, but I’m a bit lost on how to &lt;STRONG&gt;align that with Fabric’s deployment model&lt;/STRONG&gt;. For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If prod needs a hotfix, should I create a new workspace linked to the release branch?&lt;/LI&gt;&lt;LI&gt;How do I deploy that fix to test if the new workspace isn’t part of the pipeline? (if sticking to deploying via pipelines)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Lastly, I’m wondering: &lt;STRONG&gt;do I even need Git versioning on test and prod workspaces&lt;/STRONG&gt;, or is it enough to version control only the dev workspace and manage release/hotfix branches in GitHub or locally via client tool or commands ?&lt;/P&gt;&lt;P&gt;Any advice, best practices, or examples of how you’ve handled this would be hugely appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thanks in advance!!!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;!--  EndFragment   --&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 09:08:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4791024#M11597</guid>
      <dc:creator>ndamoi</dc:creator>
      <dc:date>2025-08-08T09:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices for GitHub versioning with Fabric deployment pipelines across dev/test/prod</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4791908#M11605</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1328402" data-lia-user-login="ndamoi" class="lia-mention lia-mention-user"&gt;ndamoi&lt;/a&gt;, &lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum. Please consider the below points:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Connect your development workspace to the develop branch in GitHub for version control. Use feature branches for new work, merging into develop via pull requests (PRs) to ensure collaboration and code quality. Sync the dev workspace after merges to reflect changes.&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI&gt;Deploy content from dev to test, then test to prod, using Fabric deployment pipelines instead of linking test/prod workspaces to Git. This avoids synchronization issues from manual branch switching and leverages pipelines for controlled consistent deployments.&lt;/LI&gt;
&lt;LI&gt;For releases, create a release/v1.0.0 branch from develop, deploy from the dev workspace to test via the pipeline and validate changes. After testing, merge the release branch into main and deploy from test to prod using the pipeline, ensuring a stable production rollout.&lt;/LI&gt;
&lt;LI&gt;For hotfixes, create a hotfix/v1.0.1 branch from main. Develop and test in the dev workspace or a temporary one, then merge into main and develop. Deploy to test and prod via the pipeline, eliminating the need for new workspaces unless isolation is critical.&lt;/LI&gt;
&lt;LI&gt;Use separate databases for dev/test/prod to protect production data. Apply parameters and deployment rules for environment-specific configurations (e.g., data sources). Make small, frequent commits to minimize conflicts, and consider GitHub Actions to automate PR validation and pipeline deployments for efficiency.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Refer the below official docs:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/best-practices-cicd" target="_blank"&gt;Best Practices for CI/CD&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/deployment-pipelines/intro-to-deployment-pipelines?tabs=new-ui" target="_blank"&gt;Introduction to Deployment Pipelines&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/git-deployment-pipelines" target="_blank"&gt;Git Integration and Deployment Pipelines&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/manage-deployment" target="_blank"&gt;Manage Deployment&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Ganesh Singamshetty.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Aug 2025 08:07:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4791908#M11605</guid>
      <dc:creator>v-ssriganesh</dc:creator>
      <dc:date>2025-08-09T08:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices for GitHub versioning with Fabric deployment pipelines across dev/test/prod</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4792822#M11633</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="882998" data-lia-user-login="v-ssriganesh" class="lia-mention lia-mention-user"&gt;v-ssriganesh&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thank you so much for your helpful response!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If I got it right, I should manage branches in GitHub and use deployment pipelines to handle workspace transitions. That makes things much clearer.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I’ll follow your best practices and check out the links you shared—really appreciate your support!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Aug 2025 07:26:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Best-practices-for-GitHub-versioning-with-Fabric-deployment/m-p/4792822#M11633</guid>
      <dc:creator>ndamoi</dc:creator>
      <dc:date>2025-08-11T07:26:59Z</dc:date>
    </item>
  </channel>
</rss>

