From b43b9889f8d37b2d5dd6cf202ad4583d6f8e7bc5 Mon Sep 17 00:00:00 2001 From: Plague Fox Date: Fri, 19 Jul 2024 14:48:07 +0400 Subject: [PATCH] refactor: Update tests.yml to fix timezone in dependabot.yaml This commit updates the dependabot.yaml file to fix the timezone value in the schedule section. The previous value was set to "UTC", but it has been changed to "Etc/GMT" to accurately reflect the desired timezone. This change ensures that the schedule runs at the correct time according to the specified timezone. --- .github/dependabot.yaml | 2 +- .github/workflows/tests.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index ec843bf..77db070 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -7,4 +7,4 @@ updates: rebase-strategy: auto schedule: interval: "monthly" - timezone: "UTC" \ No newline at end of file + timezone: "Etc/GMT" \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b113454..80fe819 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,12 +6,12 @@ on: branches: - "main" - "master" - - "dev" - - "develop" - - "feature/**" - - "bugfix/**" - - "hotfix/**" - - "support/**" + #- "dev" + #- "develop" + #- "feature/**" + #- "bugfix/**" + #- "hotfix/**" + #- "support/**" paths: - "lib/**.dart" - "test/**.dart"