Set secrets for Dependabot.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dependabot-secret", "title": "Dependabot Secret", "description": "Set secrets for Dependabot.", "type": "object", "properties": { "name": { "description": "The name of the secret.", "example": "MY_ARTIFACTORY_PASSWORD", "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } }, "required": [ "name", "created_at", "updated_at" ] }