Short answer: You can get jenkins build log in Jenkins by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Jenkins Get Jenkins Build Log action to a workflow, map its 2 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 |
|---|---|---|---|
Job Name job_name | string | Required | Job Name |
Build Number build_number | string | Required | Build Number. Example: 42 or lastBuild |
{"job_name": "{{trigger.job_name}}","build_number": "e.g. 42 or lastBuild"}
{"url": "https://jenkins.example.com/job/my-project/42/","result": "SUCCESS","building": false,"duration": 45000,"timestamp": 1712835600000,"displayName": "#42"}
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.