DevOps Prompts
Infrastructure, CI/CD, integrations, and deployment management.
Pipeline Management
"Show me all failed pipelines across my projects"
"What scheduled pipelines are configured?"
"Trigger a deployment pipeline on
main"
{
"action": "list",
"project_id": "my-org/api",
"status": "failed",
"per_page": 20
}{
"action": "create",
"project_id": "my-org/api",
"ref": "main",
"variables": [
{ "key": "DEPLOY_ENV", "value": "production" }
]
}CI/CD Variables
"List all CI/CD variables for
my-org/api"
"Set the DEPLOY_URL variable for production"
"Update the Docker registry password"
{
"action": "list",
"namespace": "my-org/api",
"per_page": 50
}{
"action": "create",
"namespace": "my-org/api",
"key": "DEPLOY_URL",
"value": "https://api.example.com",
"environment_scope": "production",
"protected": true,
"masked": false
}{
"action": "update",
"namespace": "my-org/api",
"key": "REGISTRY_PASSWORD",
"value": "new-secure-password",
"masked": true,
"protected": true
}Webhooks
"List webhooks configured for
my-org/api"
"Create a webhook to notify Slack on pipeline failures"
"Test the deployment webhook"
{
"action": "list",
"scope": "project",
"projectId": "my-org/api",
"per_page": 20
}{
"action": "create",
"scope": "project",
"projectId": "my-org/api",
"url": "https://hooks.slack.com/services/xxx",
"pipeline_events": true,
"push_events": false,
"enable_ssl_verification": true
}{
"action": "test",
"scope": "project",
"projectId": "my-org/api",
"hookId": "123",
"trigger": "pipeline_events"
}Integrations
"What integrations are active in
my-org/api?"
"Set up Slack notifications for
my-org/api"
"Configure the Jira integration"
{
"action": "list",
"project_id": "my-org/api",
"per_page": 50
}{
"action": "update",
"project_id": "my-org/api",
"integration": "slack",
"config": {
"webhook": "https://hooks.slack.com/services/xxx"
},
"push_events": true,
"pipeline_events": true,
"merge_requests_events": true
}Branch Protection
"Show protected branches in
my-org/api"
"Protect the
release/*branches — only maintainers can push"
{
"action": "list_protected_branches",
"project_id": "my-org/api"
}{
"action": "protect_branch",
"project_id": "my-org/api",
"name": "main",
"push_access_level": 40,
"merge_access_level": 30,
"allow_force_push": false
}Release Management
"Create a release for tag v2.0.0 with release notes"
"Add binary assets to the latest release"
See Release Notes for the complete workflow.
Monitoring Workflow
Daily DevOps checks:
"Show me failed pipelines in the last 24 hours"
"Are there any stalled manual jobs waiting for approval?"
"List recent deployment events"
"Check if any webhooks have delivery failures"
Related
- Debug Pipelines — Pipeline troubleshooting
- Trigger Deploys — Deployment automation
- Release Notes — Release management
