From 9783b419e901bc7f8cf1dc8f922c38201f1a9441 Mon Sep 17 00:00:00 2001 From: Kevin Takla Date: Wed, 20 Dec 2023 10:48:41 -0500 Subject: [PATCH] fix: adjust api integration test ci cron to run everyday of the week --- .azure-pipelines-api-integration-tests.yml | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines-api-integration-tests.yml b/.azure-pipelines-api-integration-tests.yml index 935eea19..15c01cd2 100644 --- a/.azure-pipelines-api-integration-tests.yml +++ b/.azure-pipelines-api-integration-tests.yml @@ -1,5 +1,5 @@ schedules: -- cron: "00 05 * * Mon-Sun" # Format is "Minutes Hours DayOfMonth Month DayOfWeek" in UTC (that's why 05 is 1h EST) +- cron: "00 05 * * *" # Format is "Minutes Hours DayOfMonth Month DayOfWeek" in UTC (that's why 05 is 1h EST) displayName: 'Nightly weekdays build - 1:00 EST' always: true # Start a new run even if the code didn't change (because packages might have changed). branches: diff --git a/CHANGELOG.md b/CHANGELOG.md index da94b53a..097e4dc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ Prefix your items with `(Template)` if the change is about the template and not - Added hooks for default analytics (page views and command invocations). - Renamed the `AnalyticsDataLoaderStrategy` to `MonitoringDataLoaderStrategy`. (The same renaming was applied to related methods and classes). - Remove all triggers on the API Integration tests CI. +- Ensures API Integration tests CI runs every day of the week. ## 2.1.X - Install `GooseAnalyzers` to enable the `SA1600` rule with its scope limited to interfaces and improve xml documentation.