github-actions

Installation
SKILL.md

GitHub Actions

Quick Start

Create a workflow file at .github/workflows/<name>.yml:

name: CI
on: push
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: echo "Hello World"

Essential concepts:

  • Workflow: Automated process defined in YAML, runs in response to events
Related skills

More from ghosttypes/ff-5mp-api-ts

Installs
10
GitHub Stars
6
First Seen
Mar 1, 2026