Agent skill · Code Review & Quality

github-actions-integration

Claude Code Action entegrasyonu - PR review ve issue-to-fix workflow kurulumu

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill github-actions-integration --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/github-actions-integration/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GitHub Actions - Claude Code Integration ## claude-code-action Nedir? `anthropics/claude-code-action@v1` GitHub Actions action'i. PR'lari otomatik review eder, issue'lardan otomatik fix olusturur. vibecosystem ile entegre calisir. Kaynak: https://github.com/anthropics/claude-code-action ## Kurulum ### 1. Secret Ayarlama Repository Settings > Secrets and variables > Actions > New repository secret: ``` Name: ANTHROPIC_API_KEY Value: sk-ant-... (Anthropic API key) ``` ### 2. PR Review Workflow Dosya: `.github/workflows/claude-review.yml` ```yaml name: Claude Code Review on: pull_request: types: [opened, synchronize, reopened] permissions: contents: read pull-requests: write issues: write jobs: claude-review: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Claude Code Review uses: anthropics/claude-code-action@v1 with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} review_comment_prefix: "vibecosystem-review" direct_prompt: | Review this PR for: 1. Code quality and patterns 2. Security vulnerabilities (OWASP Top 10) 3. Performance issues 4. Test coverage gaps 5. Breaking changes Use vibecosystem's code-reviewer agent standards. Provide VER

What's inside
Steps it walks through
  1. claude-code-action Nedir?
  2. Kurulum
  3. 1. Secret Ayarlama
  4. 2. PR Review Workflow
  5. 3. Issue-to-Fix Workflow
  6. Kullanim
  7. PR Review
  8. Issue Fix
  9. Workflow Customization
  10. Review Scope Daraltma
  11. Custom Review Prompt
  12. Fix Workflow Ek Talimatlar
  13. Multiple Label Support
  14. vibecosystem Entegrasyonu
More from vibecosystem
All skills →
About this skill
What does the github-actions-integration skill do?

Claude Code Action entegrasyonu - PR review ve issue-to-fix workflow kurulumu

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill github-actions-integration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going