verify_deployment
Ensure GitHub Pages deployment success by verifying repository paths and expected URLs, troubleshooting issues for accurate documentation updates.
Instructions
Verify and troubleshoot GitHub Pages deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repository | Yes | Repository path or URL | |
url | No | Expected deployment URL |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"repository": {
"description": "Repository path or URL",
"type": "string"
},
"url": {
"description": "Expected deployment URL",
"type": "string"
}
},
"required": [
"repository"
],
"type": "object"
}