ci: Migrated GitHub Actions authentication from client secrets to OIDC and combined Ubuntu & Windows workflows into a single pipeline#825
Merged
Prajwal-Microsoft merged 3 commits intomainfrom Feb 23, 2026
Conversation
Prajwal-Microsoft
approved these changes
Feb 23, 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 streamlines and unifies the deployment workflow configurations for Azure environments, focusing on improved input validation, enhanced security, and simplification of deployment options. It consolidates Linux and Windows deployment workflows, introduces dynamic runner selection, and updates authentication methods to use more secure Azure login practices.
Workflow consolidation and input flexibility:
.github/workflows/deploy-linux.ymland.github/workflows/deploy-windows.ymlfiles have been merged into a single, renamed workflow.github/workflows/deploy-v2.yml, removing the Windows-specific workflow and allowing users to select the deployment environment (runner OS) via workflow inputs. (deploy-v2.yml,deploy-linux.yml,deploy-windows.yml) [1] [2]runner_osinput to the workflow dispatch, enabling users to choose between 'codespace' (Ubuntu) and 'Local' (Windows) environments, with validation logic to ensure only valid options are used. (deploy-v2.yml) [1] [2]Security and authentication improvements:
deploy.yml,deploy-waf.yml,deploy-v2.yml) to use OpenID Connect (OIDC) withid-token: writepermission and theazure/loginGitHub Action for authentication, removing direct use of client secrets in environment variables and shell scripts. (deploy.yml,deploy-waf.yml,deploy-v2.yml,azure-dev.yml) [1] [2] [3] [4] [5] [6] [7] [8]Workflow and environment configuration:
environment: productionto deployment jobs indeploy.ymlanddeploy-waf.ymlfor better environment tracking and protection. (deploy.yml,deploy-waf.yml) [1] [2]Simplification and permissions:
deploy-orchestrator.yml)Output and input handling enhancements:
deploy-v2.ymlto propagate the selected runner OS and other validated parameters to downstream jobs, ensuring consistent configuration throughout the workflow. (deploy-v2.yml) [1] [2] [3] [4]These changes collectively improve maintainability, security, and flexibility of the deployment workflows for Azure environments.
Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information