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
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ updates:
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "14:00"
day: "sunday"

Choose a reason for hiding this comment

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

medium

time の設定が削除されています。これにより、Dependabot は指定された曜日のランダムな時刻に実行されるようになります。これはCIシステムへの負荷分散に役立つ場合がありますが、一方で依存関係の更新PRが作成されるタイミングが予測できなくなります。もしチームのワークフローが、特定の時刻にPRが作成されることに依存している場合、この変更はワークフローを妨げる可能性があります。

ランダムな時刻での実行が意図したものではなく、特定の時刻に実行したい場合は、以下のサジェスチョンのように time を追加してください。(例として午前9時を設定しています)

      day: "sunday"
      time: "09:00"

timezone: "Asia/Tokyo"