github-actions-docs

Answer GitHub Actions workflow questions using official docs.github.com pages.

Updated Apr 17, 2026
One-click install
npx skills add https://github.com/Manu343726/audible-exporter --skill github-actions-docs-manu343726
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-actions-docs
Source: https://github.com/Manu343726/audible-exporter/tree/main/.agents/skills/github-actions-docs
Command: npx skills add https://github.com/Manu343726/audible-exporter --skill github-actions-docs-manu343726

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

It helps you quickly resolve GitHub Actions workflow questions by grounding answers in the current, authoritative GitHub documentation instead of relying on outdated memory.

Core Features & Use Cases

  • Official docs-first guidance: Routes the question to the most relevant section of GitHub Actions documentation and provides direct links to the exact pages.
  • Workflow authoring and syntax support: Covers workflow YAML, triggers, jobs, matrices, expressions, contexts, and reusable workflows with doc-accurate details.
  • Runners and security help: Explains GitHub-hosted vs self-hosted runners and security topics like secrets, GITHUB_TOKEN, and OpenID Connect with references to the right security pages.

Quick Start

Ask: “Where in the official GitHub Actions docs can I find the correct YAML and explanation for setting up OIDC with reusable workflows?”

Frequently Asked Questions about github-actions-docs

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

FAQPage Schema
How do I find the correct GitHub Actions workflow syntax for setting up OIDC?

GitHub Actions OIDC setup requires configuring workflow permissions and cloud provider trust relationships. The official docs provide the exact YAML syntax for defining id-token permissions and retrieving short-lived tokens using the GITHUB_TOKEN context.

What's the best way to troubleshoot GitHub Actions reusable workflows not triggering?

Troubleshooting GitHub Actions reusable workflows involves checking the workflow_call trigger syntax and verifying the caller workflow path. Referencing the official docs helps identify structural mistakes in the called workflow YAML and caller job configuration.

Can I use GitHub-hosted runners for self-hosted runner tasks?

GitHub-hosted runners provide pre-configured environments but do not support custom software or persistent setup like self-hosted runners. The GitHub Actions documentation clarifies the distinctions, limitations, and specific use cases for each runner type.

How do I manage secrets and environments in GitHub Actions workflows?

Managing secrets in GitHub Actions involves defining them at the repository or environment level and referencing them using the secrets context. The official documentation explains how to configure protected environments and securely pass encrypted values to jobs.

Why does my GitHub Actions workflow fail when using GITHUB_TOKEN?

GitHub Actions workflow failures with GITHUB_TOKEN often stem from insufficient permissions defined in the workflow YAML. The official docs detail the default token permissions, required scopes for specific API calls, and how to modify the permissions key.