net-github-actions

Automate .NET CI/CD pipelines with GitHub Actions workflows.

165|62|Updated Jan 9, 2026
One-click install
npx skills add https://github.com/mitkox/ai-coding-factory --skill net-github-actions
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: net-github-actions
Source: https://github.com/mitkox/ai-coding-factory/tree/main/.opencode/skill/net-github-actions
Command: npx skills add https://github.com/mitkox/ai-coding-factory --skill net-github-actions

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This skill automates the creation of complete CI/CD pipelines for .NET applications.

Core Features & Use Cases

  • Build and Test: Generates workflows that build the solution and run unit/integration tests.
  • Dockerization & Packaging: Builds Docker images and pushes to registries as part of the pipeline.
  • Security & Quality: Includes security scanning and code quality checks to enforce governance.
  • Deployment & Environments: Supports multi-environment deployment (staging, production) with automated releases.

Quick Start

Use this skill to create a GitHub Actions workflow that builds a .NET solution, runs tests, creates a Docker image, and deploys to a staging environment.

Frequently Asked Questions about net-github-actions

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

FAQPage Schema
How do I create a GitHub Actions workflow for .NET 8 that builds and tests my solution?

You create a GitHub Actions workflow that builds your .NET 8 solution and runs tests by generating an automated pipeline. This pipeline ensures reproducible builds and executes unit or integration tests automatically.

What is the best way to add Docker image creation and registry pushes to a .NET CI/CD pipeline?

The best way to add Docker image creation to a .NET CI/CD pipeline is by generating a GitHub Actions workflow that builds and pushes images to registries. This integrates Docker packaging directly into your automated build process.

Can I enforce code quality gates and security scanning in my .NET GitHub Actions pipeline?

Yes, you can enforce code quality gates and security scanning in your .NET pipeline by generating GitHub Actions workflows with built-in checks. This enforces governance by preventing deployments that fail security scans or quality thresholds.

Does GitHub Actions support multi-environment deployments for staging and production in .NET?

Yes, GitHub Actions supports multi-environment deployments for staging and production in .NET by generating automated release workflows. This allows your pipeline to target different environments with automated releases for each stage.

How do I collect code coverage in a .NET GitHub Actions workflow?

You collect code coverage in a .NET GitHub Actions workflow by generating a pipeline that includes coverage collection during the test phase. This integrates code coverage metrics gathering directly into your automated build and test process.