Stop Dependabot from creating its own, otherwise unused, labels

Currently all Dependabot update PRs get tagged with a "javascript" label, which is annoying since we don't actually use that one.
To try and avoid this we specify the labels explicitly, please see https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#labels
This commit is contained in:
Jonas Jenwald 2022-11-14 15:04:05 +01:00
parent 82795a3b81
commit 26883c0d7e

View File

@ -4,3 +4,5 @@ updates:
directory: "/" directory: "/"
schedule: schedule:
interval: "weekly" interval: "weekly"
labels:
- "dependencies"