Browse Source

Merge pull request #557 from nextcloud/fix/dependabot-workspace-package

fix(tool): Add missing workspace package to dependabot
pull/562/head
Kate 1 year ago committed by GitHub
parent
commit
bce9027e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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