github-actions-pipeline-creator

Installation
SKILL.md

GitHub Actions Pipeline Creator

Build production-ready GitHub Actions workflows with best practices.

Basic CI Workflow

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

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

# Cancel in-progress runs for same workflow
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
Related skills

More from patricio0312rev/skills

Installs
114
GitHub Stars
38
First Seen
Jan 24, 2026