Skip to content

Commit 2735de0

Browse files
committed
chore(workflows): clean up whitespace in YAML files
1 parent 0b8c73d commit 2735de0

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
# github.event.pull_request.user.login == 'external-contributor' ||
1818
# github.event.pull_request.user.login == 'new-developer' ||
1919
# github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'
20-
20+
2121
runs-on: ubuntu-latest
2222
permissions:
2323
contents: read
2424
pull-requests: read
2525
issues: read
2626
id-token: write
27-
27+
2828
steps:
2929
- name: Checkout repository
3030
uses: actions/checkout@v4
@@ -36,10 +36,10 @@ jobs:
3636
uses: anthropics/claude-code-action@beta
3737
with:
3838
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
39-
39+
4040
# Optional: Specify model (defaults to Claude Sonnet 4, uncomment for Claude Opus 4)
4141
# model: "claude-opus-4-20250514"
42-
42+
4343
# Direct prompt for automated review (no @claude mention needed)
4444
direct_prompt: |
4545
Please review this pull request and provide feedback on:
@@ -48,28 +48,27 @@ jobs:
4848
- Performance considerations
4949
- Security concerns
5050
- Test coverage
51-
51+
5252
Be constructive and helpful in your feedback.
53-
53+
5454
# Optional: Customize review based on file types
5555
# direct_prompt: |
5656
# Review this PR focusing on:
5757
# - For TypeScript files: Type safety and proper interface usage
5858
# - For API endpoints: Security, input validation, and error handling
5959
# - For React components: Performance, accessibility, and best practices
6060
# - For tests: Coverage, edge cases, and test quality
61-
61+
6262
# Optional: Different prompts for different authors
6363
# direct_prompt: |
64-
# ${{ github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' &&
64+
# ${{ github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' &&
6565
# 'Welcome! Please review this PR from a first-time contributor. Be encouraging and provide detailed explanations for any suggestions.' ||
6666
# 'Please provide a thorough code review focusing on our coding standards and best practices.' }}
67-
67+
6868
# Optional: Add specific tools for running tests or linting
6969
# allowed_tools: "Bash(npm run test),Bash(npm run lint),Bash(npm run typecheck)"
70-
70+
7171
# Optional: Skip review for certain conditions
7272
# if: |
7373
# !contains(github.event.pull_request.title, '[skip-review]') &&
7474
# !contains(github.event.pull_request.title, '[WIP]')
75-

.github/workflows/claude.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,25 @@ jobs:
3434
uses: anthropics/claude-code-action@beta
3535
with:
3636
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
37-
37+
3838
# Optional: Specify model (defaults to Claude Sonnet 4, uncomment for Claude Opus 4)
3939
# model: "claude-opus-4-20250514"
40-
40+
4141
# Optional: Customize the trigger phrase (default: @claude)
4242
# trigger_phrase: "/claude"
43-
43+
4444
# Optional: Trigger when specific user is assigned to an issue
4545
# assignee_trigger: "claude-bot"
46-
46+
4747
# Optional: Allow Claude to run specific commands
4848
# allowed_tools: "Bash(npm install),Bash(npm run build),Bash(npm run test:*),Bash(npm run lint:*)"
49-
49+
5050
# Optional: Add custom instructions for Claude to customize its behavior for your project
5151
# custom_instructions: |
5252
# Follow our coding standards
5353
# Ensure all new code has tests
5454
# Use TypeScript for new files
55-
55+
5656
# Optional: Custom environment variables for Claude
5757
# claude_env: |
5858
# NODE_ENV: test
59-

0 commit comments

Comments
 (0)