mirror of
https://github.com/anthropics/claude-code.git
synced 2025-10-04 13:52:10 +08:00
80 lines
2.7 KiB
YAML
80 lines
2.7 KiB
YAML
name: Claude Issue Dedupe
|
|
description: Automatically dedupe GitHub issues using Claude Code
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
workflow_dispatch:
|
|
inputs:
|
|
issue_number:
|
|
description: 'Issue number to process for duplicate detection'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
claude-dedupe-issues:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Claude Code slash command
|
|
uses: anthropics/claude-code-base-action@beta
|
|
with:
|
|
prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}"
|
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
claude_env: |
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Log duplicate comment event to Statsig
|
|
if: always()
|
|
env:
|
|
STATSIG_API_KEY: ${{ secrets.STATSIG_API_KEY }}
|
|
run: |
|
|
ISSUE_NUMBER=${{ github.event.issue.number || inputs.issue_number }}
|
|
REPO=${{ github.repository }}
|
|
|
|
if [ -z "$STATSIG_API_KEY" ]; then
|
|
echo "STATSIG_API_KEY not found, skipping Statsig logging"
|
|
exit 0
|
|
fi
|
|
|
|
# Prepare the event payload
|
|
EVENT_PAYLOAD=$(jq -n \
|
|
--arg issue_number "$ISSUE_NUMBER" \
|
|
--arg repo "$REPO" \
|
|
--arg triggered_by "${{ github.event_name }}" \
|
|
'{
|
|
events: [{
|
|
eventName: "github_duplicate_comment_added",
|
|
value: 1,
|
|
metadata: {
|
|
repository: $repo,
|
|
issue_number: ($issue_number | tonumber),
|
|
triggered_by: $triggered_by,
|
|
workflow_run_id: "${{ github.run_id }}"
|
|
},
|
|
time: (now | floor | tostring)
|
|
}]
|
|
}')
|
|
|
|
# Send to Statsig API
|
|
echo "Logging duplicate comment event to Statsig for issue #${ISSUE_NUMBER}"
|
|
|
|
RESPONSE=$(curl -s -w "\n%{http_code}" -X POST https://events.statsigapi.net/v1/log_event \
|
|
-H "Content-Type: application/json" \
|
|
-H "STATSIG-API-KEY: ${STATSIG_API_KEY}" \
|
|
-d "$EVENT_PAYLOAD")
|
|
|
|
HTTP_CODE=$(echo "$RESPONSE" | tail -n1)
|
|
BODY=$(echo "$RESPONSE" | head -n-1)
|
|
|
|
if [ "$HTTP_CODE" -eq 200 ] || [ "$HTTP_CODE" -eq 202 ]; then
|
|
echo "Successfully logged duplicate comment event for issue #${ISSUE_NUMBER}"
|
|
else
|
|
echo "Failed to log duplicate comment event for issue #${ISSUE_NUMBER}. HTTP ${HTTP_CODE}: ${BODY}"
|
|
fi
|