Short answer: You can create work item in Azure DevOps by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Azure DevOps Create Work Item action to a workflow, map its 6 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Type type | options | Required | – |
Title title | string | Required | – |
Description description | string | Optional | – |
Assigned To (email) assigned_to | string | Optional | – |
Tags (semicolon-separated) tags | string | Optional | – |
Priority priority | options | Optional | – |
{"type": "{{trigger.type}}","title": "{{trigger.title}}","description": "{{trigger.description}}","assigned_to": "{{trigger.assigned_to}}","tags": "{{trigger.tags}}"}
{"id": 42,"rev": 1,"_links": {"html": {"href": "https://dev.azure.com/..."}},"fields": {"System.State": "New","System.Title": "Fix login bug"}}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.