Browse Source

fix(tool): Add missing workspace package to dependabot

Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/557/head
jld3103 1 year ago
parent
commit
9e01f753be
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 6
      .github/dependabot.yml
  2. 1
      tool/generate-dependabot.sh

6
.github/dependabot.yml

@ -12,6 +12,12 @@ updates:
interval: "daily"
labels:
- "dependencies"
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "daily"
labels:
- "dependencies"
- package-ecosystem: "pub"
directory: "/packages/app"
schedule:

1
tool/generate-dependabot.sh

@ -20,6 +20,7 @@ function add_update() {
add_update github-actions /
add_update gradle /packages/app/android
add_update pub /
for path in $(melos list --relative --parsable); do
add_update pub "/$path"
done

Loading…
Cancel
Save