Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit a672f97

Browse files
authored
Add dependabot github-actions group (#56468)
`.github/dependabot.yml` configures dependabot to update the `uses` dependencies needed to run github actions. For example, dependabot opened #56191 and updated all the `.github/workflows/` yaml files to point to the latest version of `actions/checkout` Add a dependabot `group` so all github action dependencies are updated in the same PR, instead of one-per-dependency. For example, if there were an update for `actions/checkout` and `actions/setup-python`, dependabot will send out one PR updating both instead of one PR per dependency. https://github.com/flutter/engine/blob/35041f11874434233b98c095c591d85dd7772c5e/.github/workflows/third_party_scan.yml#L23-L28 New PRs from dependenabot will look like: __________ <img width="400" alt="Screenshot 2024-11-08 at 11 08 52�AM" src="https://github.com/user-attachments/assets/eebedf69-3fae-409b-9c88-c3afc8036c52"> __________ See also flutter/packages#8044 and flutter/flutter#158408 [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
1 parent 35041f1 commit a672f97

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ updates:
1111
timezone: "America/Los_Angeles"
1212
labels:
1313
- "autosubmit"
14+
groups:
15+
all-github-actions:
16+
patterns: [ "*" ]
1417
ignore:
1518
# ignore patch versions, just rely on minor in order to update fewer times
1619
- dependency-name: "github/codeql-action"
1720
update-types: ["version-update:semver-minor"]
21+
1822
- package-ecosystem: "pub"
1923
directory: "/lib/web_ui"
2024
schedule:

0 commit comments

Comments
 (0)