View GitHub Actions workflow runs and status
Displays GitHub Actions workflow runs, job statuses, and logs for repositories or pull requests.
/plugin marketplace add TheBushidoCollective/han/plugin install jutsu-scratch@hanhashi-github:view-workflow - View GitHub Actions workflow runs and status
/view-workflow [arguments]
View GitHub Actions workflow runs and status
View the status of GitHub Actions workflow runs for a repository or pull request.
/view-workflow [owner/repo] [run-id or pr-number]
This command displays comprehensive workflow and job information.
list_workflow_runsUser: /view-workflow my-org/my-repo
Claude: Fetching workflow runs for my-org/my-repo...
## Recent Workflow Runs
### Run #1234 - CI Pipeline
**Status**: Running
**Branch**: feature/user-auth
**Triggered by**: Push by @johndoe
**Started**: 3 minutes ago
Jobs:
- build: Passed (1m 23s)
- test: Running (2m 15s elapsed)
- lint: Pending
- deploy: Pending
### Run #1233 - CI Pipeline
**Status**: Success
**Branch**: main
**Duration**: 4m 32s
**Completed**: 1 hour ago
All jobs passed.
User: /view-workflow my-org/my-repo 1232
Claude: Fetching workflow run #1232...
## Workflow Run #1232 - CI Pipeline
**Status**: Failed
**Branch**: feature/new-feature
**Duration**: 2m 45s
### Jobs by Status
#### Failed
- test (2m 15s)
**Error**: Test suite failed with 3 failures
FAIL src/auth.test.ts Authentication API POST /login should return JWT token Expected: 200 Received: 500
#### Passed
- build (1m 18s)
- lint (24s)
#### Skipped
- deploy (skipped due to test failure)
### Recommendations
1. Check database connection in test environment
2. Review test timeout settings
3. Re-run workflow after fixes
owner/repo (required): Repository in owner/repo formatrun-id (optional): Specific workflow run ID to viewpr-number (optional): View workflows for a specific PR/review-pr: Full PR review including workflow status/create-pr: Create PR that will trigger workflows/create-issue: Create issue for workflow failures