nw-cicd-and-deployment

仓库创建 2026年2月13日最近提交 1 个月前SkillHot 收录 22 天前
▸ 精选理由

提供成型的流水线与质量门控策略,便于快速落地部署方案。

这个 Skill 做什么

CI/CD 与部署策略的设计方法、模式与分支发布建议。

提供 CI/CD 和部署的设计方法与实践建议,包含 GitHub Actions、分支/发布策略以及本地与远程的质量门(如 pre-commit)。在搭流水线、规划回滚或想把本地反馈提速、减少 CI 等待时使用。特别之处是把常见模式整理成可复用模板,方便直接套用并减少踩坑。

▸ 展开 SKILL.md 英文原文

CI/CD pipeline design methodology, deployment strategies, GitHub Actions patterns, and branch/release strategies. Load when designing pipelines or deployment workflows.

开发编程CI/CD部署策略GitHub Actions通用
586
Stars
59
Forks
40
仓库内 Skill
+16
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/nWave-ai/nWave/main/nWave/skills/nw-cicd-and-deployment/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/nWave-ai/nWave/main/nWave/skills/nw-cicd-and-deployment/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# CI/CD Pipeline Design and Deployment Strategies

## Local Quality Gates

Catch issues at the developer's machine before they reach CI. Local gates mirror the remote commit stage for fast feedback (seconds vs minutes).

### Gate Taxonomy

| Gate | Trigger | Checks | Tools |
|------|---------|--------|-------|
| Pre-commit | `git commit` | Formatting, linting, unit tests, secrets scan | pre-commit, husky, lefthook |
| Pre-push | `git push` | Integration tests, acceptance tests, coverage threshold | pre-commit (push stage), git hooks |
| Local CI | Manual | Full pipeline locally | act (GitHub Actions), gitlab-runner exec |

### Design Principles

- **Mirror, not duplicate**: local gates run t
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有