Bump pydantic-settings from 2.14.1 to 2.14.2 in the uv group across 1 directory #112
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 Code Assistant | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| issue_comment: | |
| types: [created] | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| claude: | |
| runs-on: ubuntu-latest | |
| # Only run if issue/PR has 'claude' label or comment mentions @claude | |
| if: | | |
| (github.event_name == 'issues' && contains(github.event.issue.labels.*.name, 'claude')) || | |
| (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || | |
| (github.event_name == 'pull_request') | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run Claude Code | |
| uses: anthropics/claude-code-action@2f8ba26a219c06cfb0f468eef8d97055fa814f97 # v1 | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| # Optional: Configure Claude's behavior | |
| # model: claude-sonnet-4 | |
| # max_tokens: 8000 |