github-actions

Installation
SKILL.md

GitHub Actions Best Practices

Workflow Structure

# .github/workflows/ci.yml
name: CI

on:
    push:
        branches: [main]
    pull_request:
        branches: [main]

concurrency:
    group: ${{ github.workflow }}-${{ github.ref }}
    cancel-in-progress: true
Installs
4
First Seen
Feb 28, 2026
github-actions — grahamcrackers/skills