Skip to content

Commit a076bae

Browse files
authored
Add autosubmit label to dependabot PRs (#8101)
The [flutter/flutter](https://github.com/flutter/flutter/blob/09941e7b4781b81adeb7bce8b389e5b8b45325ca/.github/dependabot.yml#L19) and [flutter/engine](https://github.com/flutter/engine/blob/5f8e6e465584599bef234b5fea4320cf78041cc2/.github/dependabot.yml#L12-L13) repo put the `autosubmit` label on dependabot PRs so if all checks pass then no review is necessary and it will merge. For example, flutter/flutter#156024 merged without any human intervention. In packages this is rarer (due to CHANGELOG and version bumps), but still happens, for example #8097 bumps a `testImplementation` dependency and passed all checks. Add `autosubmit` to the packages repo for dependabot PRs so if all checks pass they just merge. If checks don't pass, the bot will remove the label and we'll be back to manual review required.
1 parent 7b6583c commit a076bae

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
@@ -69,6 +69,8 @@ updates:
6969
prefix: "[gradle]"
7070
schedule:
7171
interval: "weekly"
72+
labels:
73+
- "autosubmit"
7274
open-pull-requests-limit: 10
7375
ignore:
7476
- dependency-name: "*"
@@ -101,6 +103,8 @@ updates:
101103
schedule:
102104
interval: "weekly"
103105
open-pull-requests-limit: 10
106+
labels:
107+
- "autosubmit"
104108
ignore:
105109
- dependency-name: "com.android.tools.build:gradle"
106110
update-types: ["version-update:semver-minor", "version-update:semver-patch"]

0 commit comments

Comments
 (0)