migrate-from-gha
Installation
SKILL.md
Migration Procedure
You are migrating a GitHub Actions workflow to RWX. Follow these steps exactly. Do NOT use TodoWrite — this procedure is your task list.
Step 1: Read and analyze the source workflow
Read the GitHub Actions workflow file at $ARGUMENTS. If no path is provided,
look for .github/workflows/ and list the available workflow files for the user
to choose from.
Identify all jobs and their needs: dependencies, all steps within each job,
triggers (on: events), secrets referenced (${{ secrets.* }}), environment
variables (env: blocks at workflow, job, and step level), matrix strategies,
services, composite action references, reusable workflow calls, artifact
upload/download steps, and cache steps (these will be removed — RWX handles
caching natively).
Related skills