publish_changeset
Publish a ServiceNow changeset to deploy configuration updates from development to production environments, with optional notes for tracking.
Instructions
Publish a changeset in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| changeset_id | Yes | Changeset ID or sys_id | |
| publish_notes | No | Notes for publishing |
Input Schema (JSON Schema)
{
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
},
"publish_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Notes for publishing",
"title": "Publish Notes"
}
},
"required": [
"changeset_id"
],
"type": "object"
}