mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
3cac1465b4
We have monthly automatic dependabot PRs for GitHub Actions. Unfortunately, as of now we get a separate PR for every dependency which is a bit spammy compared to regular commits updating source. Thankfully, there's now a way to tell dependabot to submit a single PR per a defined group. This change defines a single group to have a single dependabot PR for all action updates. Closes gh-5503
14 lines
275 B
YAML
14 lines
275 B
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: github-actions
|
|
directory: "/"
|
|
schedule:
|
|
interval: monthly
|
|
|
|
# Group all dependabot version update PRs into one
|
|
groups:
|
|
github-actions:
|
|
applies-to: version-updates
|
|
patterns:
|
|
- "*"
|