Point this agent at your Jenkins-built repositories and ask it to plan the move to GitHub Actions.
.github/workflows/*.yml files with stage→job,
agent→runs-on, credentials()→secrets, and parallel→matrix translationworkflow_dispatch runs, and report PASS/PARTIAL/FAIL evidence with
run URLsGITHUB_TOKEN — fine-grained PAT with repo + workflow scope on a
sandbox repositoryGITHUB_TEST_REPO — owner/repo sandbox repository the agent may push
workflow runs toJENKINS_URL — optional; base URL of the Jenkins controller for
read-only job enumerationJENKINS_API_TOKEN — optional; read-only API token for job inventory
and parallel-run diffingThis solution translates declarative Jenkins pipelines and plans the migration of scripted ones. It does not auto-translate arbitrary Groovy in scripted pipelines, does not move secret values out of Jenkins credentials stores (it produces a checklist — you copy the values), does not migrate Jenkins controller/agent infrastructure, and does not configure self-hosted runners.
Crawls Jenkins pipelines, tiers each one for migration difficulty, plans phased cutovers, generates GitHub Actions workflow files, and validates them with real runs in a sandbox repository.