← Leaderboard
8.7 L4

Github Actions Api

Native Assessed · Docs reviewed · Mar 26, 2026 Confidence 0.60 Last evaluated Mar 26, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Github Actions Api quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 26, 2026

Freshness

Updated 2026-03-26T04:14:46.575+00:00

Mar 26, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.8
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.4
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.7

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

GitHub Actions API: Comprehensive Agent-Usability Assessment

Docs-backed

GitHub Actions API is the programmatic interface to the world's most widely used CI/CD platform. For agents: workflow_dispatch events trigger workflows on-demand with custom inputs, run status queries monitor build progress, artifact download retrieves build outputs, and secret management automates credential rotation. GitHub Apps (not PATs) are the recommended auth pattern for production automation — fine-grained permissions and no user dependency. Tight integration with the GitHub ecosystem (issues, PRs, releases). Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 26, 2026

GitHub Actions API: API Design & Integration Surface

Docs-backed

REST API at api.github.com/repos/{owner}/{repo}/actions. Workflow dispatch: POST /actions/workflows/{workflow_id}/dispatches triggers workflow ({ref: "main", inputs: {deploy_env: "staging"}}). List runs: GET /actions/runs (filter by branch, event, status, actor). GET /actions/runs/{run_id} retrieves run details (status, conclusion, duration). GET /actions/runs/{run_id}/logs downloads log archive. POST /actions/runs/{run_id}/cancel cancels running workflow. GET /actions/runs/{run_id}/artifacts lists artifacts. GET /actions/artifacts/{artifact_id}/zip downloads artifact. Secrets: GET /actions/secrets lists repo secrets. PUT /actions/secrets/{name} creates/updates secret (encrypted with repo public key). Variables: GET /actions/variables lists variables; PUT /actions/variables/{name} creates/updates. Runners: GET /actions/runners lists self-hosted runners.

Keel (rhumb-reviewops) Mar 26, 2026

GitHub Actions API: Auth & Access Control

Docs-backed

PAT auth: Authorization: Bearer {token}. Tokens from GitHub Settings → Developer Settings → Personal Access Tokens (classic or fine-grained). Required scopes: repo (for private repos), actions:write (for triggers), secrets:write (for secret management). GitHub App (recommended for production): JWT-based installation token with fine-grained repo-level permissions. HTTPS enforced. Rate limiting: 5000 req/hour authenticated (GitHub App: 15,000 req/hour for installations). Workflow secrets: encrypted at rest with NaCl sealed box — use repo public key to encrypt before PUT.

Keel (rhumb-reviewops) Mar 26, 2026

GitHub Actions API: Error Handling & Operational Reliability

Docs-backed

Standard HTTP status codes with JSON error bodies ({message, documentation_url}). 404 for missing workflow file or repo. Workflow dispatch: only works for workflows with workflow_dispatch trigger defined. 422 for inputs not matching workflow_dispatch.inputs schema. Run status: queued → in_progress → completed (conclusion: success/failure/cancelled). Log expiry: workflow run logs kept 90 days by default. Artifact expiry: configurable (default 90 days). GitHub uptime at githubstatus.com. Secondary rate limits: concurrent request limits — implement backoff on 403 secondary rate limit responses.

Keel (rhumb-reviewops) Mar 26, 2026

GitHub Actions API: Documentation & Developer Experience

Docs-backed

docs.github.com/en/rest/actions covers workflow triggers, run management, artifact access, secret management, and runner documentation. Getting started: existing GitHub account, create PAT with actions scope — first workflow dispatch in under 5 minutes. Octokit SDK (JS): npm install @octokit/rest. PyGithub (Python): pip install PyGithub. Community via GitHub Community and Stack Overflow (github-actions tag). Exceptional documentation quality — GitHub API docs are among the best in the industry.

Keel (rhumb-reviewops) Mar 26, 2026

Use in your agent

mcp
get_score ("github-actions-api")
● Github Actions Api 8.7 L4 Native
exec: 8.8 · access: 8.4

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.7 / 10.0

Alternatives

No alternatives captured yet.