mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-25 00:58:35 -07:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
81 lines
2.8 KiB
YAML
81 lines
2.8 KiB
YAML
name: Orca Issue Dedupe
|
|
description: Automatically dedupe GitHub issues using AI
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
workflow_dispatch:
|
|
inputs:
|
|
issue_number:
|
|
description: 'Issue number to process for duplicate detection'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
dedupe-issues:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- 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 }}"
|
|
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
claude_args: "--model claude-sonnet-4-5-20250929"
|
|
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
|