feat: Add weekly schedule for Azure Template validation,split azure-dev to azure-dev,azd-template#155
Merged
Prajwal-Microsoft merged 6 commits intodevfrom Mar 27, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Restructures GitHub Actions CI/CD by separating Azure Developer CLI (AZD) template validation into its own scheduled workflow and turning the existing workflow into a deployment-only pipeline targeting main.
Changes:
- Added a dedicated scheduled/manual workflow for AZD template validation using
microsoft/template-validation-action. - Updated the existing
azure-dev.ymlworkflow to deploy onpushtomain(and manual dispatch) usingazd up.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/azure-dev.yml | Converts workflow from template validation to main-branch deployment using azd + Azure OIDC login. |
| .github/workflows/azd-template-validation.yml | New workflow that runs template validation weekly and on-demand, printing the validation result. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Prajwal-Microsoft
approved these changes
Mar 27, 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.
This pull request restructures the GitHub Actions workflows to separate template validation and deployment processes. The main changes include moving the Azure Developer (AZD) template validation to its own scheduled workflow and updating the deployment workflow to trigger on pushes to the
mainbranch and on manual dispatch. This improves clarity, maintainability, and automation of CI/CD processes.Workflow separation and improvements:
.github/workflows/azd-template-validation.ymldedicated to AZD template validation, scheduled to run weekly and on manual dispatch. This workflow uses themicrosoft/template-validation-actionand outputs validation results..github/workflows/azure-dev.ymlto focus solely on deployment, renaming it to "Azure Dev Deploy", and setting it to trigger on pushes tomainand manual dispatch. The validation steps were removed from this workflow.Deployment process enhancements:
azdCLI, log in to Azure, authenticate with AZD, and runazd upfor provisioning and deployment.Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information