Skip to content
Merged
Changes from all commits
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
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ updates:
directories:
- "/"
schedule:
interval: "daily"
time: "14:00"
interval: "weekly"
day: "sunday"
Comment on lines +8 to +9

Choose a reason for hiding this comment

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

medium

While this configuration is valid, removing the time key will cause dependabot to run at a random time on Sunday. For more predictable behavior, it's good practice to specify a time. For example, running it early in the morning ensures pull requests are ready for review at the start of the week.

      interval: "weekly"
      day: "sunday"
      time: "02:00"

timezone: "Asia/Tokyo"
open-pull-requests-limit: 5
rebase-strategy: "disabled"
Expand All @@ -15,8 +15,8 @@ updates:
directories:
- "/"
schedule:
interval: "daily"
time: "14:00"
interval: "weekly"
day: "sunday"
Comment on lines +18 to +19

Choose a reason for hiding this comment

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

medium

Similar to the github-actions schedule, this is a valid configuration but will run at a random time on Sunday. For consistency and predictability, it's recommended to also specify a time here.

      interval: "weekly"
      day: "sunday"
      time: "02:00"

timezone: "Asia/Tokyo"
open-pull-requests-limit: 5
rebase-strategy: "disabled"