Skip to content
Development
Command

/act

Execute GitHub Actions locally using act

From plugin
claude-code-templates
30k200 skills200 agents200 commands2 MCP
Install
$ npx -y skills add davila7/claude-code-templates --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/act

Context preview

What this command does when you run it.

Execute GitHub Actions locally using act

Command definition

act.md
allowed-tools: Read, Edit, Bash
argument-hint: [workflow-name]
description: Execute GitHub Actions locally using act

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`
  • If no workflow: List all available workflows
  • Check workflow triggers and events

3. **Local Execution**

  • Run workflow with appropriate flags
  • Use secrets from `.env` or `.secrets`
  • Handle platform-specific runners
  • Monitor execution and logs

4. **Debugging Support**

  • Use `--verbose` for detailed output
  • Use `--dry-run` for testing
  • Use `--list` to show available actions

Example Commands

# List all workflows
act --list

# Run specific workflow
act workflow_dispatch -W .github/workflows/$ARGUMENTS.yml

# Run with secrets
act --secret-file .env

# Debug mode
act --verbose --dry-run
Ships withclaude-code-templates

Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.

Get the whole plugin, auto-invoked
Stats
30,155
Stars
18
Views
3,377
Forks
Active
Maintenance
Python
Language
MIT
License
1h ago
Last commit
1y ago
Created

Repo: davila7/claude-code-templates