Skip to content

Fix null deref in forEachProperty when Proxy traps throw #843

Fix null deref in forEachProperty when Proxy traps throw

Fix null deref in forEachProperty when Proxy traps throw #843

name: Claude Find Issues for PR
on:
pull_request:
types: [opened]
workflow_dispatch:
inputs:
pr_number:
description: 'PR number to find related issues for'
required: true
type: string
jobs:
claude-find-issues:
runs-on: ubuntu-latest
timeout-minutes: 20
concurrency:
group: claude-find-issues-${{ github.event.pull_request.number || inputs.pr_number }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
issues: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Find issues this PR may fix
uses: anthropics/claude-code-base-action@98d41f9809750c4c96f2cd285746ecef889f14bc
env:
ANTHROPIC_MODEL: claude-opus-4-6[1m]
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
prompt: "/find-issues ${{ github.repository }}/pull/${{ github.event.pull_request.number || inputs.pr_number }}"
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
- name: Find duplicate PRs
if: always()
uses: anthropics/claude-code-base-action@98d41f9809750c4c96f2cd285746ecef889f14bc
env:
ANTHROPIC_MODEL: claude-opus-4-6[1m]
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
prompt: "/find-duplicate-prs ${{ github.repository }}/pull/${{ github.event.pull_request.number || inputs.pr_number }}"
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}