The Appview for the kipclip.com atproto bookmarking service

Fix formatting in Claude workflow files

deno fmt --check was failing because the workflow files had trailing
blank lines and single quotes where double quotes were expected.

+3 -6
+3 -5
.github/workflows/claude-code-review.yml
··· 17 17 # github.event.pull_request.user.login == 'external-contributor' || 18 18 # github.event.pull_request.user.login == 'new-developer' || 19 19 # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' 20 - 21 20 runs-on: ubuntu-latest 22 21 permissions: 23 22 contents: read ··· 36 35 uses: anthropics/claude-code-action@v1 37 36 with: 38 37 claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} 39 - plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' 40 - plugins: 'code-review@claude-code-plugins' 41 - prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}' 38 + plugin_marketplaces: "https://github.com/anthropics/claude-code.git" 39 + plugins: "code-review@claude-code-plugins" 40 + prompt: "/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}" 42 41 # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md 43 42 # or https://code.claude.com/docs/en/cli-reference for available options 44 -
-1
.github/workflows/claude.yml
··· 47 47 # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md 48 48 # or https://code.claude.com/docs/en/cli-reference for available options 49 49 # claude_args: '--allowed-tools Bash(gh pr:*)' 50 -