Skip to content

Instantly share code, notes, and snippets.

View chambits's full-sized avatar

Chamith Madusanka chambits

View GitHub Profile
name: Claude Code
# Trigger on issue and PR interactions
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
issues:
types: [opened, assigned, labeled]
name: Claude PR Review
on:
# Manual trigger from GitHub Actions UI
workflow_dispatch:
inputs:
pr_number:
description: "Pull Request number to review"
required: true
type: string

name: code-review
description: Review code changes with project-specific guidelines

Code Review Skill


name: lint-fix description: Fix all lint and format errors in the codebase

Fix Lint and Format Errors

Fix all lint and format errors in the codebase. Always run formatters BEFORE linters.

Backend (Go)