Text widget: Anchor id is dropped by all non-heading variants (breaks #fragment scroll) #13979
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 PR Assistant | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| id-token: write | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_review_comment: | |
| types: [created] | |
| issues: | |
| types: [opened, assigned] | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| claude-code-action: | |
| if: | | |
| (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || | |
| (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || | |
| (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || | |
| (github.event_name == 'issues' && contains(github.event.issue.body, '@claude')) | |
| runs-on: ubuntu-latest | |
| env: | |
| AWS_REGION: eu-north-1 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| issues: read | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Generate GitHub App token | |
| id: app-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.APP_ID }} | |
| private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'microsoft' | |
| java-version: '17' | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Configure AWS Credentials (OIDC) | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
| aws-region: eu-north-1 | |
| - name: Run Claude PR Action | |
| uses: anthropics/claude-code-action@v1 | |
| with: | |
| trigger_phrase: "@claude" | |
| timeout_minutes: "60" | |
| github_token: ${{ steps.app-token.outputs.token }} | |
| use_bedrock: "true" | |
| settings: '{ | |
| "permissions": { | |
| "allow": [ | |
| "Bash", | |
| "Edit", | |
| "Glob", | |
| "Grep", | |
| "LS", | |
| "MultiEdit", | |
| "Read", | |
| "Task", | |
| "TodoWrite", | |
| "WebFetch", | |
| "WebSearch", | |
| "Write" | |
| ], | |
| "deny": [] | |
| } | |
| }' | |
| claude_args: "--model ${{ vars.CLAUDE_MODEL }}" |