What problem does it solve? Setting up CI/CD pipelines from scratch is error-prone and time-consuming, requiring knowledge of YAML syntax, action versions, caching strategies, and security practices. This Skill provides ready-to-adapt GitHub Actions workflow patterns so you can automate testing, Docker builds, and deployments without starting from a blank file. ## Core Features & Use Cases - Workflow Patterns: Pre-built templates for test automation, Docker image building and pushing to registries, Kubernetes deployment, and multi-OS matrix builds. - Reusable Workflows: Patterns for creating callable workflows with inputs and secrets to share logic across repositories. - Security & Approvals: Templates for vulnerability scanning with Trivy and Snyk, plus production deployments gated by environment approvals and Slack notifications. - Use Case: You need to add CI to a Node.js project. Use the test workflow pattern with a Node version matrix, dependency caching, and coverage upload, then extend it with the Docker build pattern to publish images to GHCR on tagged releases. ## Quick Start Ask the AI to create a GitHub Actions workflow that runs tests on Node 18 and 20, builds a Docker image, and pushes it to GHCR on every tag.