Skip to content

Commit

Permalink
chore: Update Dependabot Schedule (#229)
Browse files Browse the repository at this point in the history
# Pull Request

## Description

This pull request includes changes to the `.github/dependabot.yml` file
to modify the update schedules for different dependency groups. The most
important changes are:

Update schedule changes:

* Changed the update schedule for `github-actions` dependencies from
daily to weekly, specifying updates on Saturdays at 01:00 in the
Europe/London timezone.
* Changed the update schedule for `python` dependencies from monthly to
weekly, specifying updates on Saturdays at 01:00 in the Europe/London
timezone.
* Changed the update schedule for `docker` dependencies from monthly to
weekly, specifying updates on Saturdays at 01:00 in the Europe/London
timezone.

Fixes #230
  • Loading branch information
JackPlowman authored Nov 21, 2024
1 parent c50f209 commit 12dc40c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ updates:
commit-message:
prefix: "deps(github-actions)"
schedule:
interval: "daily"
interval: "weekly"
day: "saturday"
time: "01:00"
timezone: "Europe/London"
target-branch: "main"
groups:
github-actions:
Expand All @@ -21,7 +24,10 @@ updates:
commit-message:
prefix: "deps(python)"
schedule:
interval: "monthly"
interval: "weekly"
day: "saturday"
time: "01:00"
timezone: "Europe/London"
target-branch: "main"
groups:
python:
Expand All @@ -33,5 +39,8 @@ updates:
commit-message:
prefix: "deps(docker)"
schedule:
interval: "monthly"
interval: "weekly"
day: "saturday"
time: "01:00"
timezone: "Europe/London"
target-branch: "main"

0 comments on commit 12dc40c

Please sign in to comment.