Act - GitHub Actions Workflow Syntax Use this skill when creating or modifying GitHub Actions workflow files ( ). This covers workflow structure, triggers, jobs, steps, and best practices for workflows that work both on GitHub and locally with act. Workflow File Structure Every GitHub Actions workflow follows this basic structure: Top-Level Fields - : Human-readable workflow name (optional but recommended) - : Trigger events (push, pull request, workflow dispatch, etc.) - : Environment variables available to all jobs - : Map of job definitions - : Token permissions for the workflow Workflow T…