Actions Secret

Set secrets for GitHub Actions.

APIs.ioEngineeringPlatform

Properties

Name Type Description
name string The name of the secret.
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-actions-secret-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/actions-secret",
  "title": "Actions Secret",
  "description": "Set secrets for GitHub Actions.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the secret.",
      "example": "SECRET_TOKEN",
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "name",
    "created_at",
    "updated_at"
  ]
}