github-actions-cicd

Build and optimize GitHub Actions CI/CD workflows with secure YAML configuration.

44|9|Updated May 7, 2026
One-click install
npx skills add https://github.com/Omar-Obando/qwen-orchestrator --skill github-actions-cicd-omar-obando
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-actions-cicd
Source: https://github.com/Omar-Obando/qwen-orchestrator/tree/main/skills/github-actions-cicd
Command: npx skills add https://github.com/Omar-Obando/qwen-orchestrator --skill github-actions-cicd-omar-obando

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill solves the problem of designing reliable, secure, and scalable GitHub Actions CI/CD workflows that can grow from basic checks into production-grade pipelines.

Core Features & Use Cases

  • Workflow automation for CI/CD: Covers workflow triggers, job/step orchestration, and dependency-driven execution using needs.
  • Production-grade pipeline patterns: Includes runner selection (hosted and self-hosted), matrix builds, environments with protection rules, artifacts, and concurrency controls.
  • Action development and security hardening: Guides composite, Docker, and npm-based actions plus marketplace integration, while enforcing least-privilege permissions and security scanning patterns (dependency review, secret scanning, CodeQL).

Quick Start

Use the github-actions-cicd skill to generate a secure GitHub Actions workflow for pushing to main with linting, test matrix, security scanning, artifact build, and environment-protected deployment.

Frequently Asked Questions about github-actions-cicd

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a secure GitHub Actions CI/CD workflow for production deployments?

To create a secure GitHub Actions CI/CD workflow, configure YAML files with least-privilege permissions, enforce environment protection rules, and integrate secret scanning. This ensures safe staging and production deployments through dependency-driven job orchestration.

What are reusable workflows and matrix builds in GitHub Actions?

Reusable workflows and matrix builds in GitHub Actions allow teams to execute parallel jobs across multiple environments and configurations. This pattern optimizes pipeline scaling by orchestrating runner selection and standardizing pipeline execution across projects.

How do I configure concurrency and artifacts in GitHub Actions pipelines?

Configuring concurrency and artifacts in GitHub Actions pipelines involves defining concurrency controls to cancel outdated runs and passing artifacts between jobs. This optimizes resource usage and ensures smooth dependency-driven execution.

Does GitHub Actions support CodeQL and dependency review for CI security hardening?

Yes, GitHub Actions supports CI security hardening through CodeQL and dependency review. Integrating these security scanning patterns into your YAML workflows identifies vulnerabilities and enforces least-privilege permissions during continuous integration.

What is the best way to handle secrets management in GitHub Actions?

The best way to handle secrets management in GitHub Actions is using secure secret handling practices combined with least-privilege permissions. This approach protects sensitive data during workflow automation and production deployments.