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
12 changes: 11 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Keep git submodules up to date automatically.
# Keep git submodules and pinned GitHub Actions up to date automatically.
#
# This template embeds the shared `macros` repo as a git submodule. Dependabot's
# `gitsubmodule` updater opens a PR whenever a submodule's default branch
Expand All @@ -14,3 +14,13 @@ updates:
interval: "weekly"
commit-message:
prefix: "chore(submodule)"

# Also keep pinned GitHub Actions current. Dependabot scans .github/workflows/
# and opens a PR when a newer release of a pinned action is available;
# unversioned @HEAD / @main pins are left untouched.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(actions)"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Consider adding a groups key to bundle all action bumps into a single weekly PR rather than one per action. With ~8 pinned actions in .github/workflows/, the initial Dependabot run could open 5+ PRs simultaneously (default open-pull-requests-limit is 5). Grouping keeps the noise down:

Suggested change
prefix: "chore(actions)"
commit-message:
prefix: "chore(actions)"
groups:
github-actions:
patterns:
- "*"

Not a blocker — just a quality-of-life suggestion.

Loading