From 9529c1fea422bbe02ccedaa04f3d89599e6b153e Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 11 Aug 2021 08:27:14 -0700 Subject: [PATCH] [skip changelog] Revert "Add skip changelog prefix to Dependabot workflow update commits (#1381)" This reverts commit 4fbf7b7b047bbd63c00cd2dcc7f3b0e0551ea7ec. It turns out there is an undocumented maximum length of 15 characters for this prefix: https://github.com/arduino/arduino-cli/network/updates ``` Dependabot encountered the following error when parsing your .github/dependabot.yml: The property '#/updates/0/commit-message/prefix' was not of a maximum string length of 15 Please update the config file to conform with Dependabot's specification. ``` Unfortunately, even though it is possible to reduce the prefix length by 1 with the removal of the trailing space, we still end up with 16 characters. --- .github/dependabot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fb90a1c2193..bf52cd2e1fa 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,5 @@ updates: directory: / # Check the repository's workflows under /.github/workflows/ schedule: interval: daily - commit-message: - prefix: "[skip changelog] " labels: - "topic: dependencies"