Execute GitHub Actions locally using act
workflow-namesonnetautomation/# Act - GitHub Actions Local Execution Execute GitHub Actions workflows locally using act: $ARGUMENTS ## Current Workflows - Available workflows: !`find .github/workflows -name "*.yml" -o -name "*.yaml" | head -10` - Act configuration: @.actrc (if exists) - Docker status: !`docker --version` ## Task Execute GitHub Actions workflow locally: 1. **Setup Verification** - Ensure act is installed: `act --version` - Verify Docker is running - Check available workflows in `.github/workflows/` 2. **Workflow Selection** - If workflow specified: Run specific workflow `$ARGUMENTS` ...