Github Swarm Issue Github Actions Integration

Sub-skill of github-swarm-issue: GitHub Actions Integration.

vamseeachanta c17463a 851 B Updated

File contents

GitHub Actions Integration

GitHub Actions Integration

# .github/workflows/issue-swarm.yml
name: Issue Swarm Handler
on:
  issues:
    types: [opened, labeled]
  issue_comment:
    types: [created]

jobs:
  process-new-issue:
    if: github.event.action == 'opened'
    runs-on: ubuntu-latest
    steps:
      - name: Auto-Triage Issue
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          TITLE="${{ github.event.issue.title }}"
          BODY="${{ github.event.issue.body }}"

          # Determine labels based on content
          LABELS=""
          if echo "$TITLE $BODY" | grep -qiE "bug|error"; then
            LABELS="bug"

*See sub-skills for full details.*

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/development/github/github-swarm-issue/github-actions-integration commit c17463a1ee

Frequently asked questions

npx skillmds@latest add vamseeachanta/github-swarm-issue-github-actions-integration