skills/github-actions-author/SKILL.md
Author, review, and harden GitHub Actions workflows using current official documentation, secure trigger patterns, least-privilege permissions, current action versions, and CI/CD validation. Use when creating, editing, debugging, or security-reviewing workflow YAML.
npx skillsauth add shipshitdev/library github-actions-authorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Inputs:
Outputs:
Creates/Modifies:
.github/workflows/*.ymlExternal Side Effects:
Confirmation Required:
Delegates To:
testing-cicd-init for first-pass TypeScript test infrastructuregh-fix-ci when a workflow is failing on a PRgit-safety when workflows touch credentials, tokens, or publish stepsDiscover existing CI shape:
find .github/workflows -maxdepth 1 -type f 2>/dev/null
gh workflow list
git status -sb
Read relevant local context:
package.json, lockfiles, workspace config, test scriptsGround version-sensitive choices in official GitHub docs:
GITHUB_TOKEN permissionspull_request vs pull_request_targetCheck action versions before adding or bumping common actions:
gh release view --repo actions/checkout --json tagName --jq '.tagName'
gh release view --repo actions/setup-node --json tagName --jq '.tagName'
gh release view --repo oven-sh/setup-bun --json tagName --jq '.tagName'
Author with safe defaults:
contents: read.pull_request for untrusted code. Use pull_request_target only for
metadata/comment workflows that do not check out or execute fork code.concurrency for expensive or deploy workflows.Validate locally when possible:
git diff -- .github/workflows
gh workflow view <workflow-name-or-id> --yaml
Run actionlint if already installed. Do not install new global tools unless
the user asks.
Final output:
development
Coordinates a weekly engineering review of board accuracy, recent code changes, operational health, and scoped cleanup. Use for a recurring repository health review or a review of the last several days.
testing
Audits project board configuration and prepares explicitly requested setup, copy, or normalization changes while preserving the existing workflow and provider boundaries. Use when inspecting a board's fields, columns, scope, or configuration.
testing
Reconciles a project board with current work and delivery evidence, reports incomplete coverage and metadata gaps, and applies only approved provider-supported field changes. Use when auditing board drift, reviewing blocked work, or assessing upcoming delivery.
development
Walk through how a subsystem works. Use for "how does X work", code walkthroughs before changing something, and placement or ownership questions. Explains architecture, runtime flow, and onboarding mental models. Can critique architecture. Use why for motivation.