feat: unify to_timestamp/try_to_timestamp, honor ANSI, drop legacy UDF
#9621
Workflow file for this run
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 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| pull_request_review: | |
| types: | |
| - submitted | |
| pull_request_review_comment: | |
| types: | |
| - created | |
| issues: | |
| types: | |
| - opened | |
| - assigned | |
| jobs: | |
| claude: | |
| if: | | |
| (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || | |
| (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || | |
| (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || | |
| (github.event_name == 'issues' && contains(github.event.issue.body, '@claude')) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/actions/adjust-swap-space | |
| - uses: ./.github/actions/mount-target-directory | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - uses: pypa/hatch@install | |
| - uses: ./.github/actions/setup-rust | |
| with: | |
| cache-key: rust-build | |
| install-testing-tools: false | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: current | |
| cache: pnpm | |
| - run: pnpm install | |
| - name: Generate GitHub App Token | |
| id: app-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ vars.LAKESAIL_CLAUDE_CODE_APP_ID }} | |
| private-key: ${{ secrets.LAKESAIL_CLAUDE_CODE_APP_PRIVATE_KEY }} | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v5 | |
| with: | |
| role-to-assume: ${{ vars.CLAUDE_CODE_AWS_ROLE_ARN }} | |
| aws-region: us-east-1 | |
| - name: Run Claude Code | |
| uses: anthropics/claude-code-action@v1 | |
| with: | |
| trigger_phrase: "@claude" | |
| github_token: ${{ steps.app-token.outputs.token }} | |
| use_bedrock: "true" | |
| track_progress: false # Do not track progress, unresolved code comments can result in unwanted bias: https://github.com/anthropics/claude-code-action/issues/590 | |
| claude_args: | | |
| --allowedTools Bash,Read,Write,Edit,MultiEdit,Glob,Grep,LS,mcp__github_inline_comment__create_inline_comment | |
| --model us.anthropic.claude-opus-4-6-v1 |