diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-07-08 19:04:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 19:04:44 +0200 |
commit | 5665215a8560832193735d9507a90d10e03b90c8 (patch) | |
tree | 4700468a05ed6c647f6476fa2f5fe3db39b14c14 | |
parent | 7f0e920a97cedbe6f18fe41d8363cb3a8ad67938 (diff) | |
download | jquery-ui-5665215a8560832193735d9507a90d10e03b90c8.tar.gz jquery-ui-5665215a8560832193735d9507a90d10e03b90c8.zip |
Build: Group dependabot PRs updating GitHub Actions
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-2267
Ref jquery/jquery#5503
-rw-r--r-- | .github/dependabot.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fff16c79..aa2f74565 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,10 @@ updates: directory: "/" schedule: interval: monthly + + # Group all dependabot version update PRs into one + groups: + github-actions: + applies-to: version-updates + patterns: + - "*" |