From 64000fcfceff195a1cf4d4bf7f07eeeefb1ffd1f Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 29 Jun 2021 13:21:33 -0700 Subject: [PATCH] Reconfigure Arduino Lint CI for Library Manager Arduino Lint, which is used in the "Check Arduino" CI workflow, checks for compliance with the requirements for submission of a library into the Library Manager index, as well as for the requirements for releases of the library to be indexed once it is accepted. Since some of these requirements are contradictory, Arduino Lint must be configured according to the library's status. In GitHub Actions workflows, this configuration is done via the `arduino/arduino-lint-action` action's `library-manager` input. Now that the library has been accepted into the Library Manager index, the "update" configuration must be used. --- .github/workflows/check-arduino.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-arduino.yml b/.github/workflows/check-arduino.yml index b655707..0d969f6 100644 --- a/.github/workflows/check-arduino.yml +++ b/.github/workflows/check-arduino.yml @@ -22,7 +22,7 @@ jobs: uses: arduino/arduino-lint-action@v1 with: compliance: specification - library-manager: submit + library-manager: update # Always use this setting for official repositories. Remove for 3rd party projects. official: true project-type: library