ci-cd-pipeline

Installation
SKILL.md

CI/CD Pipeline Patterns

GitHub Actions workflows for consistent, fast, and reliable delivery pipelines.

Workflow Structure

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

on:
  push:
    branches: [main, develop]
  pull_request:
    branches: [main]
  workflow_dispatch:        # manual trigger
Installs
10
GitHub Stars
508
First Seen
Mar 23, 2026
ci-cd-pipeline — vibeeval/vibecosystem