Sub-skill of github-swarm-pr: GitHub Actions Integration.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill github-actions-integration --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Github Actions Integration?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-github-actions-integration-ed607cbf)More formats (shields.io, HTML) on the badges page.
---
name: github-swarm-pr-github-actions-integration
description: 'Sub-skill of github-swarm-pr: GitHub Actions Integration.'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# GitHub Actions Integration
## GitHub Actions Integration
```yaml
# .github/workflows/swarm-pr.yml
name: Swarm PR Handler
on:
pull_request:
types: [opened, labeled, synchronize]
issue_comment:
types: [created]
jobs:
swarm-review:
if: contains(github.event.pull_request.labels.*.name, 'swarm-review')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Analyze PR
id: analyze
run: |
CHANGES=$(git diff --stat HEAD~1 | tail -1)
echo "changes=$CHANGES" >> $GITHUB_OUTPUT
- name: Post Swarm Analysis
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
*See sub-skills for full details.*
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.