Skip to content

Commit

Permalink
Fix cron schedule, acr purge is actually daily and other schedule was…
Browse files Browse the repository at this point in the history
… accidentically hourly
  • Loading branch information
janboll committed Sep 18, 2024
1 parent 3136e7b commit bf1b524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-infrastructure/templates/dev-acr.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ steps:
trigger: {
timerTriggers: [
{
name: 'weekly'
name: 'daily'
schedule: '0 0 * * *'
}
]
Expand Down Expand Up @@ -167,7 +167,7 @@ steps:
timerTriggers: [
{
name: 'daily'
schedule: '0 * * * *'
schedule: '0 0 * * *'
}
]
}
Expand Down

0 comments on commit bf1b524

Please sign in to comment.