-
-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Description
Until now, the Plugin Health Scoring application wasn't configured correctly to communicate with GitHub API.
This result in false negative results on SCM validation probe. As this probe requires a release to be executed again, only plugins with new releases are updated. But, with the new configuration being valid, we need the probe to be executed on all the known plugins, regardless of a new release.
To do so, I need to run a SQL request on the database used by the application.
UPDATE plugins
SET details = details::jsonb - 'scm';
Would you be able to help me do that?