nektos/act

Run your GitHub Actions locally 🚀

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 50 minutes ago
Added to GitGenius on May 6th, 2026
Created on January 2nd, 2019
Open Issues & Pull Requests: 378 (+0)
GitHub issues: Enabled
Number of forks: 2,021
Total Stargazers: 71,848 (+0)
Total Subscribers: 211 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 2.0 days
Mean response time: 62.6 days
90th percentile: 180.6 days
Tracked items: 381

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 99% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "area/runner" is answered fastest, typically in about 6 hours, while "confirmed/not-planned" waits about 5 weeks. 65% of tracked open issues have had no activity in three months, so the open count overstates what is actively being worked. Only 3% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 204
New in 7 days: 2
Closed in 7 days: 1
Avg open age: 573 days
Stale 30+ days: 194
Stale 90+ days: 180

Recent activity

Opened in 7 days: 2
Closed in 7 days: 1
Comments in 7 days: 2
Events in 7 days: 5

Top labels

  • kind/bug (285)
  • stale (120)
  • kind/feature-request (101)
  • stale-exempt (17)
  • confirmed/not-planned (15)
  • area/runner (12)
  • kind/discussion (12)
  • backlog (11)

Detailed Description

Act is a command-line tool written in Go that enables developers to run GitHub Actions workflows locally on their machines before pushing code to a repository. The project addresses a fundamental pain point in GitHub Actions development: the need to commit and push changes repeatedly just to test workflow modifications. By running workflows locally, developers gain fast feedback on their `.github/workflows/` files and any embedded GitHub Actions without the overhead of remote execution.

The tool works by reading workflow definitions from the `.github/workflows/` directory and using the Docker API to pull or build the necessary container images as specified in those workflows. It then determines the execution path based on task dependencies and runs containers for each action, configuring environment variables and filesystem structures to match what GitHub's hosted runners provide. This approach allows developers to test their entire CI/CD pipeline locally before committing changes.

Beyond testing, act functions as a local task runner that can replace traditional Makefiles. Developers can leverage their existing GitHub Actions definitions to automate local development tasks, eliminating the need to maintain separate build scripts and reducing duplication across their tooling.

The repository has demonstrated sustained activity and community engagement.

The tool is classified across multiple domains including workflow automation, CI/CD, local runner functionality, actions execution, testing, containerization, event simulation, continuous integration, and developer productivity.

Act is built with Go 1.20 or higher and can be manually built from source using standard make commands for testing and installation. The project maintains comprehensive documentation through its dedicated user guide at nektosact.com and encourages community contribution through established contributing guidelines. A Visual Studio Code extension called GitHub Local Actions has been developed to integrate act directly into the editor, allowing developers to run and test workflows without leaving their development environment. The project is listed on awesome-runners, indicating recognition within the GitHub Actions community as a valuable tool for local workflow execution.