|
1882 | 1882 | "integrationTypes": ["security"], |
1883 | 1883 | "tags": ["identity", "microsoft-365"] |
1884 | 1884 | }, |
| 1885 | + { |
| 1886 | + "type": "azure_devops", |
| 1887 | + "slug": "azure-devops", |
| 1888 | + "name": "Azure DevOps", |
| 1889 | + "description": "Interact with Azure DevOps pipelines, builds, and work items", |
| 1890 | + "longDescription": "Integrate Azure DevOps into your workflow. List and inspect pipelines and builds, query and manage work items, and add or read comments.", |
| 1891 | + "bgColor": "#0078D4", |
| 1892 | + "iconName": "AzureDevOpsIcon", |
| 1893 | + "docsUrl": "https://docs.sim.ai/tools/azure_devops", |
| 1894 | + "operations": [ |
| 1895 | + { |
| 1896 | + "name": "List Pipelines", |
| 1897 | + "description": "List all pipelines in an Azure DevOps project. Returns pipeline ID, name, folder, revision, and URL." |
| 1898 | + }, |
| 1899 | + { |
| 1900 | + "name": "Get Pipeline", |
| 1901 | + "description": "Get details for a specific pipeline in an Azure DevOps project, including configuration and repository info." |
| 1902 | + }, |
| 1903 | + { |
| 1904 | + "name": "List Pipeline Runs", |
| 1905 | + "description": "List runs for a specific pipeline in an Azure DevOps project. Returns run ID, name, state, result, and timestamps." |
| 1906 | + }, |
| 1907 | + { |
| 1908 | + "name": "Get Pipeline Run", |
| 1909 | + "description": "Get details for a specific pipeline run in an Azure DevOps project. Returns run state, result, timestamps, and the pipeline reference." |
| 1910 | + }, |
| 1911 | + { |
| 1912 | + "name": "List Builds", |
| 1913 | + "description": "List builds in an Azure DevOps project. Optionally filter by pipeline definition, status, result, or branch." |
| 1914 | + }, |
| 1915 | + { |
| 1916 | + "name": "List Build Logs", |
| 1917 | + "description": "List all log entries for a specific build in Azure DevOps. Returns log IDs, types, and line counts — use the log ID with the Get Build Log tool to fetch actual log text." |
| 1918 | + }, |
| 1919 | + { |
| 1920 | + "name": "Get Build Log", |
| 1921 | + "description": "Fetch the text content of a specific build log in Azure DevOps. Use List Build Logs first to get the log ID. Optionally retrieve only a line range with startLine/endLine." |
| 1922 | + }, |
| 1923 | + { |
| 1924 | + "name": "Get Build Timeline", |
| 1925 | + "description": "Get the execution timeline for an Azure DevOps build — every stage, job, and task with its result and log ID. Use this to identify which steps failed before fetching their logs with Get Build Log." |
| 1926 | + }, |
| 1927 | + { |
| 1928 | + "name": "Get Work Items Between Builds", |
| 1929 | + "description": "Get work item references associated with commits between two builds in Azure DevOps. Returns work item IDs and URLs — use Get Work Items Batch for full field details." |
| 1930 | + }, |
| 1931 | + { |
| 1932 | + "name": "Query Work Items", |
| 1933 | + "description": "Execute a WIQL query to search for work items in Azure DevOps and return full field details. Use TOP N in your query to limit results (Azure enforces a 200-item maximum per batch fetch)." |
| 1934 | + }, |
| 1935 | + { |
| 1936 | + "name": "Get Work Item", |
| 1937 | + "description": "Fetch full details of a single work item by ID from Azure DevOps, including title, state, type, assignee, and area path." |
| 1938 | + }, |
| 1939 | + { |
| 1940 | + "name": "Get Work Items Batch", |
| 1941 | + "description": "Fetch full details for multiple work items by ID from Azure DevOps in a single call. Pass comma-separated IDs (e.g. " |
| 1942 | + }, |
| 1943 | + { |
| 1944 | + "name": "Create Work Item", |
| 1945 | + "description": "Create a new Basic-process work item (Issue, Task, or Epic) in Azure DevOps. Returns the created work item with its assigned ID." |
| 1946 | + }, |
| 1947 | + { |
| 1948 | + "name": "Update Work Item", |
| 1949 | + "description": "Update one or more fields on an existing work item in Azure DevOps. Provide only the fields you want to change." |
| 1950 | + }, |
| 1951 | + { |
| 1952 | + "name": "Add Comment", |
| 1953 | + "description": "Add a comment to a work item in Azure DevOps." |
| 1954 | + }, |
| 1955 | + { |
| 1956 | + "name": "Get Comments", |
| 1957 | + "description": "List comments for an Azure DevOps work item." |
| 1958 | + } |
| 1959 | + ], |
| 1960 | + "operationCount": 16, |
| 1961 | + "triggers": [ |
| 1962 | + { |
| 1963 | + "id": "azure_devops_build_failed", |
| 1964 | + "name": "Azure DevOps Build Failed", |
| 1965 | + "description": "Trigger workflow when an Azure DevOps build fails, is canceled, or partially succeeds" |
| 1966 | + }, |
| 1967 | + { |
| 1968 | + "id": "azure_devops_work_item_created", |
| 1969 | + "name": "Azure DevOps Work Item Created", |
| 1970 | + "description": "Trigger workflow when a work item is created in Azure DevOps" |
| 1971 | + }, |
| 1972 | + { |
| 1973 | + "id": "azure_devops_webhook", |
| 1974 | + "name": "Azure DevOps Webhook (All Service Hook Events)", |
| 1975 | + "description": "Trigger on whichever service hook event types you configure in Azure DevOps. Sim does not filter deliveries for this trigger." |
| 1976 | + } |
| 1977 | + ], |
| 1978 | + "triggerCount": 3, |
| 1979 | + "authType": "api-key", |
| 1980 | + "category": "tools", |
| 1981 | + "integrationTypes": ["developer-tools", "productivity"], |
| 1982 | + "tags": ["ci-cd", "project-management", "version-control"] |
| 1983 | + }, |
1885 | 1984 | { |
1886 | 1985 | "type": "box", |
1887 | 1986 | "slug": "box", |
|
4057 | 4156 | "name": "Fetch", |
4058 | 4157 | "description": "Fetch and parse a file from a URL with optional custom headers." |
4059 | 4158 | }, |
| 4159 | + { |
| 4160 | + "name": "Get", |
| 4161 | + "description": "Get a workspace file object from a selected file or canonical workspace file ID." |
| 4162 | + }, |
4060 | 4163 | { |
4061 | 4164 | "name": "Write", |
4062 | 4165 | "description": "Create a new workspace file. If a file with the same name already exists, a numeric suffix is added (e.g., " |
|
4066 | 4169 | "description": "Append content to an existing workspace file. The file must already exist. Content is added to the end of the file." |
4067 | 4170 | } |
4068 | 4171 | ], |
4069 | | - "operationCount": 4, |
| 4172 | + "operationCount": 5, |
4070 | 4173 | "triggers": [], |
4071 | 4174 | "triggerCount": 0, |
4072 | 4175 | "authType": "none", |
|
0 commit comments