Skip to content

Commit

Permalink
refactor: Update tests.yml to fix timezone in dependabot.yaml
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
PlugFox committed Jul 19, 2024
1 parent e221c9a commit b43b988
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ updates:
rebase-strategy: auto
schedule:
interval: "monthly"
timezone: "UTC"
timezone: "Etc/GMT"
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b43b988

Please sign in to comment.