Best for
- Use this skill when working with GitHub Actions workflows, CI pipeline configuration, or understanding the automated quality and deployment process.
event4u-app/agent-config/src/skills/github-ci/SKILL.md
When working with GitHub Actions — workflow YAML, quality gates, test matrices, deployment triggers, reusable workflows — even when the user just says 'my CI is failing' or 'add a check'.
Decision brief
When working with GitHub Actions — workflow YAML, quality gates, test matrices, deployment triggers, reusable workflows — even when the user just says 'my CI is failing' or 'add a check'.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/github-ci"Inspect the Agent Skill "github-ci" from https://github.com/event4u-app/agent-config/blob/6a5670b7881a676c0da90d2afb950298087c4ccb/src/skills/github-ci/SKILL.md at commit 6a5670b7881a676c0da90d2afb950298087c4ccb. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
1. Read .github/workflows/ to understand the full pipeline. 2. Check AGENTS.md for quality tool commands and testing setup. 3. Read commands/fix/ci.md for CI failure debugging workflow.
Triggered on: pullrequest to main, workflowdispatch
Use pinned action versions with SHA hashes (not tags): actions/checkout@ v6.0.2
Use this skill when working with GitHub Actions workflows, CI pipeline configuration, or understanding the automated quality and deployment process.
Triggered on: pullrequest to main, workflowdispatch
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 9 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Use this skill when working with GitHub Actions workflows, CI pipeline configuration, or understanding the automated quality and deployment process.
.github/workflows/ to understand the full pipeline.AGENTS.md for quality tool commands and testing setup.commands/fix/ci.md for CI failure debugging workflow.quality-tests.yml)Triggered on: pull_request to main, workflow_dispatch
Read .github/workflows/ to discover the actual job matrix. Common patterns:
ARG PHP_VERSION), not hardcoded.| Workflow | Trigger | Environment |
|---|---|---|
deploy-review.yaml | PR with review-env label | Review (ephemeral) |
deploy-sta.yaml | Push to main | Stage |
deploy-pro.yaml | Tag release-X.Y.Z or schedule (Mon 8AM) | Production |
deploy.yml | After "Static Code Analysis" succeeds on main | Envoyer trigger |
module-deploy.yaml | Reusable workflow (called by others) | Parameterized |
| Workflow | Purpose |
|---|---|
pr-review-gate.yaml | Points-based review system (see code-review skill) |
destroy-review.yaml | Cleanup ephemeral review environments |
add-labels.yml | Auto-label PRs |
apply-pr-template.yaml | Apply PR description template |
validate-deployment-files.yaml | Validate AWS deployment configs |
template-db-dump.yaml | Database dump utility |
actions/checkout@<sha> # v6.0.2group: ${{ github.workflow }}-${{ github.ref }}fail-fast: false in matrix strategies for independent job execution.module-deploy.yaml pattern).container: MUST run git config --global --add safe.directory "$GITHUB_WORKSPACE" immediately after actions/checkout — the checkout is owned by a different UID than the container user, so without it every git-backed step dies with fatal: detected dubious ownership.Every workflow that installs dependencies needs:
COMPOSER_AUTH secret validation (check if set, validate JSON).awk -F= '/^ARG PHP_VERSION/ {print $2}' .docker/DockerfileCheck .github/workflows/ for the runner types used. Common patterns:
ubuntu-latest) for light jobs.env: at job level for shared secrets.$GITHUB_OUTPUT for passing data between steps.$GITHUB_ENV for variables needed across multiple steps.GET /repos/{owner}/{repo}/actions/runs?branch={branch}GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobsGET /repos/{owner}/{repo}/actions/jobs/{job_id}/logsSee commands/fix/ci.md for the full debugging workflow.
.github/workflows/--env=testing to artisan commands in CI — tests will hit the wrong database.continue-on-error: true to hide failures — fix the actual error.actions/checkout@v4).Frequently asked questions
When working with GitHub Actions — workflow YAML, quality gates, test matrices, deployment triggers, reusable workflows — even when the user just says 'my CI is failing' or 'add a check'.
The source record exposes this install command: npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/github-ci". Inspect the command and pinned source before running it.
Alternatives
vasilyu1983/AI-Agents-public
Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.
steipete/agent-scripts
REQUIRED before ANY `op` command or whenever a task needs an API key, token, password, credential, or secret (OPENAI_API_KEY, ANTHROPIC_API_KEY, deploy tokens, live-test keys). Prompt-free 1Password service-account reads; wrong invocations spam macOS dialogs.
microsoft/Sico
Execute Android UI workflows on a sandbox device, review results, and produce a structured execution report.
mission69b/t2000
Publishing, upgrading, and deploying Sui Move packages. Use this skill when the user needs to publish a package, upgrade a published package, deploy to multiple networks, serialize transactions for multisig signing, run a local Sui network (localnet), prepare for Mainnet launch, monitor production deployments, or debug dry run failures. Also use when the user asks about sui client publish, sui client upgrade, UpgradeCap, upgrade policies, Published.toml, --serialize-output, localnet, mainnet lau