From 11652727b9f21e14c45c2179f5e23c43f8979f03 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Mon, 14 Nov 2022 15:04:05 +0100 Subject: [PATCH] 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 --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5ace4600a1f26e..b85dc1893de89e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,5 @@ updates: directory: "/" schedule: interval: "weekly" + labels: + - "dependencies"