Merged
Conversation
…d Consolidated Ubuntu & Windows workflows into a single parameterized pipeline
…r Linux and Windows
chore: Dev to main
fix: update subprocess calls in script
chore: Add CODEOWNERS file with default owners
ci: Migrated GitHub Actions authentication from client secrets to OIDC and Integrated Smoke Testing Automation into the pipeline
Avijit-Microsoft
approved these changes
Mar 9, 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 introduces several improvements and cleanups to the GitHub Actions workflows for deployment, focusing on modernizing Azure authentication, simplifying runner options, and removing legacy files. The most significant changes are the migration to OIDC-based Azure authentication, the removal of the deprecated "Devcontainer" runner option, and the deletion of the obsolete Windows deployment workflow.
Modernization of Azure authentication:
docker-build.yml,job-cleanup-deployment.yml,job-deploy-linux.yml,deploy-v2.yml) to use OIDC-based Azure authentication via theazure/login@v2action, replacing service principal logins. This improves security and aligns with best practices. [1] [2] [3] [4] [5]id-token: writepermission where required for OIDC authentication. [1] [2]Simplification of runner options:
deploy-orchestrator.ymland the renameddeploy-v2.yml. [1] [2] [3] [4]Workflow cleanups and environment improvements:
environment: productionto several jobs for improved environment tracking and compliance. [1] [2] [3]deploy-orchestrator.yml,job-cleanup-deployment.yml, andjob-deploy-linux.ymlfor cleaner configuration. [1] [2] [3]Removal of obsolete files:
.github/workflows/deploy-windows.ymlworkflow, which included extensive input validation and deployment logic for Windows environments, as it is no longer needed.Ownership and test logic updates:
deploy-orchestrator.ymlby restoring the original conditional logic.These changes collectively modernize the CI/CD pipeline, reduce complexity, and improve security and maintainability.
Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information