Add patterns to Dependabot config for weekly batched PRs - #673
Merged
Conversation
patniko
force-pushed
the
agent/20260304-164612-session-68acdc6d
branch
from
March 5, 2026 01:01
e0850b0 to
3095ba0
Compare
Each updates entry needs patterns: ['*'] when using multi-ecosystem-groups so Dependabot batches all dependencies into a single weekly PR instead of creating individual PRs per dependency. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
patniko
force-pushed
the
agent/20260304-164612-session-68acdc6d
branch
from
March 5, 2026 01:03
3095ba0 to
8058f4f
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Updates repository automation and documentation, with the stated goal of making Dependabot batch updates into a single weekly grouped PR.
Changes:
- Add
groups: { all: { patterns: ['*'] } }to each Dependabotupdatesentry to enable within-ecosystem grouping beforemulti-ecosystem-groupbatching. - Update the cross-repo issue triage agentic workflow to clone
github/copilot-agent-runtimelocally and expand/adjust allowed shell tooling. - Add a new documentation guide describing custom agents and sub-agent orchestration across SDK languages.
Reviewed changes
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.github/dependabot.yaml |
Enables per-ecosystem grouping so multi-ecosystem batching can produce a single weekly PR. |
.github/workflows/cross-repo-issue-analysis.md |
Adjusts agentic workflow behavior/tools and adds a clone step for the runtime repo. |
.github/workflows/cross-repo-issue-analysis.lock.yml |
Compiled workflow output reflecting the .md workflow changes. |
docs/guides/custom-agents.md |
New guide documenting custom agents/sub-agent events and configuration examples. |
Comment on lines
7
to
12
| - package-ecosystem: 'github-actions' | ||
| directory: '/' | ||
| multi-ecosystem-group: 'all' | ||
| patterns: ['*'] | ||
| - package-ecosystem: 'devcontainers' | ||
| directory: '/' |
There was a problem hiding this comment.
The PR title/description are scoped to Dependabot grouping, but this PR also adds a large new documentation page (docs/guides/custom-agents.md) and changes the cross-repo issue triage workflow. Please either update the PR title/description to reflect the additional changes, or split the docs/workflow updates into separate PR(s) so the Dependabot change can be reviewed/rolled back independently.
edburns
pushed a commit
that referenced
this pull request
Aug 4, 2026
Each updates entry needs patterns: ['*'] when using multi-ecosystem-groups so Dependabot batches all dependencies into a single weekly PR instead of creating individual PRs per dependency. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Dependabot is creating individual PRs per dependency (11 open right now) instead of batching them weekly.
Root cause
The config had
multi-ecosystem-groupsfor cross-ecosystem batching, but eachupdatesentry was missing agroupsblock. Without within-ecosystem grouping, each dependency still gets its own PR —multi-ecosystem-groupsonly merges already-grouped PRs across ecosystems.Fix
Added
groups: { all: { patterns: ['*'] } }to everyupdatesentry so all dependencies within each ecosystem are grouped together first, thenmulti-ecosystem-groupsmerges them into a single weekly PR.