feat: Add weekly schedule for Azure Template validation,split azure-dev to azure-dev,azd-template#155
Conversation
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.
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.
|
🎉 This PR is included in version 1.0.4 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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