diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2023-08-12 13:11:20 +0200 |
|---|---|---|
| committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2023-08-12 13:11:20 +0200 |
| commit | 43b376e4d0e3949a7dadfb7c78c4632fae23f55a (patch) | |
| tree | d43cdd703fc8ebc08af288776d9ab859fcdcfc8c /.github | |
| parent | Update dependabot.yml (diff) | |
| download | misskey-43b376e4d0e3949a7dadfb7c78c4632fae23f55a.tar.gz misskey-43b376e4d0e3949a7dadfb7c78c4632fae23f55a.tar.bz2 misskey-43b376e4d0e3949a7dadfb7c78c4632fae23f55a.zip | |
fix(dependabot): do not list each workspace item
Diffstat (limited to '.github')
| -rw-r--r-- | .github/dependabot.yml | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 510a0719ec..27bbeb8b4e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,28 +10,15 @@ updates: schedule: interval: daily open-pull-requests-limit: 100 + +# Add only the root, not each workspace item +# https://github.com/dependabot/dependabot-core/issues/4993#issuecomment-1289133027 - package-ecosystem: npm directory: "/" schedule: interval: daily open-pull-requests-limit: 100 -- package-ecosystem: npm - directory: "/packages/backend" - schedule: - interval: daily - open-pull-requests-limit: 100 -- package-ecosystem: npm - directory: "/packages/frontend" - schedule: - interval: daily - open-pull-requests-limit: 100 -- package-ecosystem: npm - directory: "/packages/sw" - schedule: - interval: daily - open-pull-requests-limit: 100 -- package-ecosystem: npm - directory: "/packages/misskey-js" - schedule: - interval: daily - open-pull-requests-limit: 100 + groups: + swc: + patterns: + - "@swc/*" |