
GitHub Actions Creator
FreeEffortlessly generate GitHub Actions workflows for your projects.
Free · Opens the source repo
What GitHub Actions Creator does
The GitHub Actions Creator skill is designed to assist developers in creating and managing GitHub Actions workflows efficiently. By following a structured process, this skill analyzes the project’s stack, identifies the necessary components, and generates a production-ready workflow file tailored to the user's needs. It supports a wide range of use cases, including continuous integration, deployment, testing, security scanning, and more, making it a versatile tool for any developer working with GitHub.
At the core of this skill is a systematic approach that begins with analyzing the project to determine the programming language and framework in use. It checks for indicators like package.json for Node.js or requirements.txt for Python, ensuring that the generated workflows are compatible with the existing project structure. Additionally, it assesses any pre-existing CI/CD configurations to avoid conflicts and to leverage existing setups effectively.
Once the analysis is complete, the skill prompts the user for any clarifying questions to ensure the workflow meets their specific requirements. This interactive approach helps avoid ambiguity and ensures that the generated workflows align with user expectations. After gathering all necessary information, the skill generates a YAML file following best practices for GitHub Actions, including naming conventions, trigger specifications, and job configurations.
This skill is particularly useful for developers looking to streamline their CI/CD processes without having to manually write complex YAML configurations. Whether you are new to GitHub Actions or an experienced user, the GitHub Actions Creator skill can save time and reduce errors in workflow setup, allowing you to focus on building your application instead of managing deployment processes.
When to use it
Use this skill when you need to set up or modify GitHub Actions workflows for continuous integration, deployment, or other automated tasks.
When not to use it
This skill may not be suitable for projects with highly customized or complex CI/CD requirements that cannot be addressed through standard workflows.
What you can build with it
Setting Up a CI Pipeline
Quickly create a CI pipeline that runs tests and lint checks on pull requests and pushes to the main branch.
Automating Deployments
Generate deployment workflows that automatically deploy your application to platforms like AWS or Vercel upon code changes.
Creating Scheduled Tasks
Set up workflows that run at scheduled intervals for tasks like backups or regular updates.
How to install GitHub Actions Creator
View source1. Install with the skills CLI
npx skills add davila7/claude-code-templates/github-actions-creator --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by davila7GitHub Actions Creator
You are an expert at creating GitHub Actions workflows. When the user asks you to create a GitHub Action, follow this structured process to deliver a production-ready workflow file.
Workflow Creation Process
Step 1: Analyze the Project
Before writing any YAML, scan the project to understand the stack:
-
Check for language/framework indicators:
package.json→ Node.js (check for React, Next.js, Vue, Angular, Svelte, etc.)requirements.txt/pyproject.toml/setup.py→ Pythongo.mod→ GoCargo.toml→ Rustpom.xml/build.gradle→ Java/KotlinGemfile→ Rubycomposer.json→ PHPpubspec.yaml→ Dart/FlutterPackage.swift→ Swift*.csproj/*.sln→ .NET
-
Check for existing CI/CD:
.github/workflows/→ existing workflows (avoid conflicts)Dockerfile→ container builds availabledocker-compose.yml→ multi-service setupvercel.json/netlify.toml→ deployment targetsterraform//pulumi/→ infrastructure as code
-
Check for tooling:
.eslintrc*/eslint.config.*→ ESLint configuredprettier*→ Prettier configuredjest.config*/vitest.config*/pytest.ini→ test framework.env.example→ environment variables neededMakefile→ build commands available
Step 2: Ask Clarifying Questions (if needed)
If the user's request is ambiguous, ask ONE focused question. Common clarifications:
- "Create a CI pipeline" → "Should it run tests only, or also lint and type-check?"
- "Add deployment" → "Where does this deploy? (Vercel, AWS, GCP, Docker Hub, etc.)"
- "Set up tests" → "Should tests run on PR only, or also on push to main?"
If the intent is clear, skip this step and proceed.
Step 3: Generate the Workflow
Create the .github/workflows/{name}.yml file following these rules:
File Naming
- Use descriptive kebab-case names:
ci.yml,deploy-production.yml,release.yml - For simple CI:
ci.yml - For deployment:
deploy.ymlordeploy-{target}.yml - For scheduled tasks:
scheduled-{task}.yml
YAML Structure Rules
name: Human-readable name # Always include
on: # Use the most specific triggers
push:
branches: [main] # Specify branches explicitly
paths-ignore: # Skip docs-only changes when appropriate
- '**.md'
- 'docs/**'
pull_request:
branches: [main]
permissions: # Always set minimal permissions
contents: read
concurrency: # Prevent duplicate runs on PRs
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
job-name:
runs-on: ubuntu-latest # Default to ubuntu-latest
timeout-minutes: 15 # Always set a timeout
steps:
- uses: actions/checkout@v4 # Always pin to major version
Core Patterns by Use Case
CI (Test + Lint)
Trigger: pull_request + push to main
Jobs: lint, test (parallel when possible)
Key features: dependency caching, matrix testing for multiple versions
Deployment
Trigger: push to main (or release tags)
Jobs: test → build → deploy (sequential with needs)
Key features: environment protection, secrets for credentials, status checks
Release / Publish
Trigger: push tags matching v* or workflow_dispatch
Jobs: test → build → publish → create GitHub Release
Key features: changelog generation, artifact upload, npm/PyPI/Docker publish
Scheduled Tasks
Trigger: schedule with cron expression
Jobs: single job with the task
Key features: workflow_dispatch for manual trigger too, failure notifications
Security Scanning
Trigger: pull_request + schedule (weekly)
Jobs: dependency audit, SAST, secret scanning
Key features: SARIF upload to GitHub Security tab, fail on critical
Docker Build & Push
Trigger: push to main + tags
Jobs: build → push to registry
Key features: multi-platform builds, layer caching, image tagging strategy
Essential Actions Reference
Setup Actions (always pin to major version)
| Action | Purpose |
|---|---|
actions/checkout@v4 | Clone repository |
actions/setup-node@v4 | Node.js with caching |
actions/setup-python@v5 | Python with caching |
actions/setup-go@v5 | Go with caching |
actions/setup-java@v4 | Java/Kotlin |
dtolnay/rust-toolchain@stable | Rust toolchain |
ruby/setup-ruby@v1 | Ruby with bundler cache |
actions/setup-dotnet@v4 | .NET SDK |
Build & Deploy Actions
| Action | Purpose |
|---|---|
docker/build-push-action@v6 | Docker multi-platform builds |
docker/login-action@v3 | Docker registry authentication |
aws-actions/configure-aws-credentials@v4 | AWS authentication |
google-github-actions/auth@v2 | GCP authentication |
azure/login@v2 | Azure authentication |
cloudflare/wrangler-action@v3 | Cloudflare Workers deploy |
amondnet/vercel-action@v25 | Vercel deployment |
Quality & Security Actions
| Action | Purpose |
|---|---|
github/codeql-action/analyze@v3 | CodeQL SAST scanning |
aquasecurity/trivy-action@master | Container vulnerability scan |
codecov/codecov-action@v4 | Coverage upload |
actions/dependency-review-action@v4 | Dependency audit on PRs |
Utility Actions
| Action | Purpose |
|---|---|
actions/cache@v4 | Generic caching |
actions/upload-artifact@v4 | Store build artifacts |
actions/download-artifact@v4 | Retrieve artifacts between jobs |
softprops/action-gh-release@v2 | Create GitHub Releases |
slackapi/slack-github-action@v2 | Slack notifications |
peter-evans/create-pull-request@v7 | Automated PR creation |
Security Best Practices (ALWAYS follow)
- Minimal permissions: Always declare
permissionsat workflow or job level - Pin actions to major version: Use
@v4not@mainor full SHA for readability - Never echo secrets: Secrets are masked but avoid
echo ${{ secrets.X }} - Use environments: For production deploys, use GitHub Environments with protection rules
- Validate inputs: For
workflow_dispatch, validate input values - Avoid script injection: Never use
${{ github.event.*.body }}directly inrun:— pass via environment variables - Use GITHUB_TOKEN: Prefer
${{ secrets.GITHUB_TOKEN }}over PATs when possible - Concurrency controls: Use
concurrencyto prevent parallel deploys
# WRONG - script injection vulnerability
- run: echo "${{ github.event.issue.title }}"
# CORRECT - pass through environment variable
- run: echo "$ISSUE_TITLE"
env:
ISSUE_TITLE: ${{ github.event.issue.title }}
Caching Strategies
Node.js
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm' # or 'yarn' or 'pnpm'
Python
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip' # or 'poetry' or 'pipenv'
Go
- uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: true
Rust
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
Docker
- uses: docker/build-push-action@v6
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Matrix Testing Patterns
Multiple Node.js versions
strategy:
matrix:
node-version: [18, 20, 22]
fail-fast: false
Multiple OS
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Complex matrix with exclusions
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, 20]
exclude:
- os: windows-latest
node-version: 18
Cron Syntax Quick Reference
| Schedule | Cron |
|---|---|
| Every hour | 0 * * * * |
| Daily at midnight UTC | 0 0 * * * |
| Weekdays at 9am UTC | 0 9 * * 1-5 |
| Weekly on Sunday | 0 0 * * 0 |
| Monthly 1st | 0 0 1 * * |
Output Format
After creating the workflow file, provide:
- What the workflow does — one-paragraph summary
- Required secrets — list any secrets the user needs to configure in Settings > Secrets
- Required permissions — if the workflow needs non-default repository permissions
- How to test — how to trigger the workflow (push, create PR, manual dispatch)
Common Patterns to Combine
When the user asks for something generic like "set up CI/CD", create a single workflow with multiple jobs:
jobs:
lint: # Fast feedback
test: # Core validation
build: # Ensure it compiles/bundles
needs: [lint, test]
deploy: # Only after everything passes
needs: build
if: github.ref == 'refs/heads/main'
Keep workflows focused. Prefer one workflow per concern over one massive workflow, unless the jobs are tightly coupled.
Frequently asked questions about GitHub Actions Creator
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
