chore: down merge to dev from main#793
Merged
Roopan-Microsoft merged 10 commits intodevfrom Mar 3, 2026
Merged
Conversation
docs: Update Troubleshoot doc
Added links to AI and Data Engineering playbooks for best practices.
docs: Update README with AI and Data playbook links
ci: Migrated GitHub Actions authentication from client secrets to OIDC and combined Ubuntu & Windows workflows into a single pipeline
chore: Dev to main
Roopan-Microsoft
approved these changes
Mar 3, 2026
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.
Purpose
This pull request updates several GitHub Actions workflows to improve Azure authentication, standardize environment settings, and simplify deployment management. The main changes include switching from manual Azure CLI login commands to the official
azure/loginaction, adding support for OIDC authentication, consolidating deployment workflows, and enabling selection of the deployment environment (runner OS). Additionally, the Windows-specific deployment workflow is removed in favor of a unified, more flexible deployment workflow.Authentication and Permissions Improvements
az logincommands to theazure/login@v2action, enabling support for OIDC and improving security and maintainability (.github/workflows/bicep_deploy.yml,.github/workflows/deploy-KMGeneric.yml) [1] [2] [3] [4].id-token: writepermission to workflow files to support OIDC authentication for Azure deployments (.github/workflows/bicep_deploy.yml,.github/workflows/deploy-KMGeneric.yml,.github/workflows/deploy-v2.yml,.github/workflows/docker-build.yml) [1] [2] [3] [4].Deployment Workflow Enhancements
environment: productionto relevant jobs to ensure deployments are tracked and managed as production releases (.github/workflows/bicep_deploy.yml,.github/workflows/deploy-KMGeneric.yml,.github/workflows/docker-build.yml) [1] [2] [3] [4]..github/workflows/deploy-linux.ymlto.github/workflows/deploy-v2.ymland generalized its configuration, removing Linux/Windows duplication and making it the primary deployment workflow.Deployment Environment Flexibility
runner_osinput to the deployment workflow, allowing users to select between 'codespace' (Ubuntu) and 'Local' (Windows) environments, and dynamically set the runner OS based on this input (.github/workflows/deploy-v2.yml) [1] [2] [3] [4].Workflow Cleanup and Consolidation
.github/workflows/deploy-windows.ymlworkflow, consolidating all deployment logic into the updated and more flexibledeploy-v2.yml.These changes modernize and simplify the CI/CD pipeline, making deployments more secure, flexible, and easier to maintain.
Does this introduce a breaking change?