gh-actions

Solid

Use when creating GitHub Actions workflows, release automation, checksums, signing, or CI/CD.

AI & Automation 389 stars 40 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 86/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Optimal GitHub Actions Production-tested patterns + 2025-2026 best practices. ## Quick Start: Which Workflow? | Need | Template | Reference | |------|----------|-----------| | CI on push/PR | `ci.yml` | [CI-CORE](references/CI-CORE.md) | | Release on tag | `release.yml` | [RELEASE-BUILD](references/RELEASE-BUILD.md) | | Nightly fuzz/bench | `fuzz.yml` | [TESTING](references/TESTING.md) | | Dependency updates | `dependabot.yml` | [DEPENDABOT](references/DEPENDABOT.md) | --- ## Core Patterns (Every Workflow) ```yaml on: push: branches: [main] pull_request: workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true # false for releases permissions: contents: read # Minimal by default jobs: build: timeout-minutes: 30 # Never use default 6h ``` --- ## Language Quick Reference | Language | Setup | Template | |----------|-------|----------| | **Rust** | `dtolnay/rust-toolchain@stable` | [TEMPLATE-RUST](references/TEMPLATE-RUST.md) | | **Go** | `actions/setup-go@v6` | [TEMPLATE-GO](references/TEMPLATE-GO.md) | | **TypeScript** | `oven-sh/setup-bun@v2` | [TEMPLATE-TS](references/TEMPLATE-TS.md) | | **Bash** | — | [TEMPLATE-BASH](references/TEMPLATE-BASH.md) | | **Python** | `astral-sh/setup-uv@v7` | [TEMPLATE-PYTHON](references/TEMPLATE-PYTHON.md) | --- ## Cross-Platform Matrix (Native ARM 2025+) ```yaml strategy: fail-fast: false matrix: include: - os: ubuntu-latest # Linux x6...

Details

Author
boshu2
Repository
boshu2/agentops
Created
7 months ago
Last Updated
today
Language
Go
License
NOASSERTION

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category