Skip to main content
Mythos

**GitHub Actions** is the CI/CD and automation feature of πŸ“GitHub that runs workflows defined as YAML files in a repository's .github/workflows directory, triggered by repository events, cron schedules, or manual dispatch. It exists because build, test, and release automation previously required a separate service wired to the repository by webhook, with its own credentials and permission model; Actions collapses that into the same place the code and pull requests already live. It serves any team hosting on GitHub, from single-maintainer projects on the free tier to enterprises running self-hosted runner fleets.

Key Capabilities

  • Event-driven workflows β€” Jobs trigger on pushes, pull requests, cron schedules, or manual dispatch, with concurrency groups that cancel superseded runs.
  • Hosted and self-hosted runners β€” GitHub-hosted Linux, Windows, macOS, and ARM images, or your own machines managed through Actions Runner Controller.
  • Service containers β€” Jobs can start dependencies like Postgres or MongoDB as Docker services with health checks, so tests run against real backing stores.
  • Environments and scoped secrets β€” Deployment environments gate jobs behind approval rules and scope secrets to a named environment rather than the whole repository.
  • Reusable marketplace actions β€” Steps call published actions by tag or pinned commit SHA, covering checkout, language setup, caching, and third-party integrations.

Getting Started

  1. Create a .github/workflows/ci.yml file in your repository.
  2. Set on: to the triggering events β€” push, pull_request, schedule, workflow_dispatch.
  3. Choose a runner with runs-on: ubuntu-latest and list build steps under steps:.
  4. Store credentials as repository or environment secrets, never inline in the YAML.
  5. Push the branch, then watch the run under the repository's Actions tab.

Related

Contexts

Created with πŸ’œ by One Inc | Copyright 2026