Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/azd-template-validation.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: AZD Template Validation
on:
schedule:
- cron: '30 1 * * 4' # Every Thursday at 7:00 AM IST (1:30 AM UTC)
- cron: '*/20 * * * *' # Temporary validation schedule: every 10 minutes
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The cron expression */20 * * * * runs every 20 minutes, but the inline comment (and PR description) says “every 10 minutes”. If the intent is 10-minute cadence, update the cron to */10 * * * *; otherwise fix the comment/description to avoid confusion and unintended workflow load.

Suggested change
- cron: '*/20 * * * *' # Temporary validation schedule: every 10 minutes
- cron: '*/10 * * * *' # Temporary validation schedule: every 10 minutes

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need of it

workflow_dispatch:
Comment thread
Tejasri-Microsoft marked this conversation as resolved.

permissions:
Expand Down Expand Up @@ -31,6 +31,7 @@ jobs:
AZURE_LOCATION: ${{ vars.AZURE_LOCATION }}
AZURE_AI_SERVICE_LOCATION: ${{ vars.AZURE_LOCATION }}
AZURE_AI_MODEL_CAPACITY: 1 # keep low to avoid potential quota issues
GH_TOKEN: ${{ secrets.AZD_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.AZD_GITHUB_TOKEN }}
Comment thread
Tejasri-Microsoft marked this conversation as resolved.
Outdated

- name: print result
Expand Down
Loading