get_job_logs_tail
Retrieve the last N lines of a failed GitHub Actions job log, stripped of ANSI codes and timestamps, to quickly diagnose issues.
Instructions
Fetch tail of a failed job log. Input: {repo: "owner/repo", jobId: number, lines?: number=80}. Returns last N lines of the job log (cleaned of ANSI + timestamp prefixes).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | ||
| jobId | Yes | Job databaseId (from get_failed_jobs) | |
| lines | No | Lines to tail (default 80) |