commit_changeset
Commit a changeset in ServiceNow by specifying the changeset ID and optional commit message to finalize updates and ensure version control integration.
Instructions
Commit a changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CommitChangesetParams": {
"description": "Parameters for committing a changeset.",
"properties": {
"changeset_id": {
"description": "Changeset ID or sys_id",
"title": "Changeset Id",
"type": "string"
},
"commit_message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Commit message",
"title": "Commit Message"
}
},
"required": [
"changeset_id"
],
"title": "CommitChangesetParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/CommitChangesetParams"
}
},
"required": [
"params"
],
"title": "commit_changesetArguments",
"type": "object"
}