bundler: let DCE drop unreachable top-level await before rejecting CJS #842
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |