Skip to content

The PR description/example shows structural diffs including a per-declaration unified diff hunk (base/head/@@) for modified declarations, but the current implementation only outputs summary lines like function_declaration X: modified without any intra-declaration diff. Either update the implementation to include the intended per-declaration diff output (or at least the changed declaration text), or adjust the PR description/docs/tests so the advertised output matches actual behavior. #62

The PR description/example shows structural diffs including a per-declaration unified diff hunk (base/head/@@) for modified declarations, but the current implementation only outputs summary lines like function_declaration X: modified without any intra-declaration diff. Either update the implementation to include the intended per-declaration diff output (or at least the changed declaration text), or adjust the PR description/docs/tests so the advertised output matches actual behavior.

The PR description/example shows structural diffs including a per-declaration unified diff hunk (base/head/@@) for modified declarations, but the current implementation only outputs summary lines like function_declaration X: modified without any intra-declaration diff. Either update the implementation to include the intended per-declaration diff output (or at least the changed declaration text), or adjust the PR description/docs/tests so the advertised output matches actual behavior. #62

Workflow file for this run

name: Label issues for AI review
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add AI review label to issue
run: gh issue edit "$NUMBER" --add-label "$LABELS"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: "request ai review"