From bf95384f9127497aba5531edf09888eaf5e02db2 Mon Sep 17 00:00:00 2001 From: Vladimir Kukushkin Date: Fri, 17 Apr 2026 15:45:50 +0100 Subject: [PATCH] 1. Add configuration to dependabot to add label 'semver/none' to the PR. 2. If not yet updated, set dependabot update schedule to 'daily'. Both changes are already in place: 1. The `labels: ["semver/none"]` configuration is present (lines 7-8). 2. The schedule interval is already set to `"daily"` (line 6). The file already has the desired configuration. The git status shows this file as modified, so these changes were likely already made on this branch and are ready to be committed. --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1230149..2f093ae 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,5 @@ updates: directory: "/" schedule: interval: "daily" + labels: + - "semver/none"