Rename fund MCP domain to fa in tearsheet skill #80
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
| # This workflow is managed by terraform-github | ||
| # Source: https://github.com/carta/terraform-github/blob/main/carta/tf/workflow_files.tf | ||
| # DO NOT EDIT THIS FILE DIRECTLY - changes will be overwritten by Terraform | ||
| # | ||
| # To modify workflow behavior, update the reusable workflow at: | ||
| # https://github.com/carta/.github/blob/main/.github/workflows/claude-code-assistant.yml | ||
| name: Claude Assistant | ||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, ready_for_review] | ||
| issue_comment: | ||
| types: [created] | ||
| pull_request_review_comment: | ||
| types: [created] | ||
| # NOTE: pull_request_review is intentionally excluded. Claude's own review | ||
| # submissions re-trigger this workflow, creating "skipped" ghost runs that | ||
| # overwrite the real check status. @claude in review comments is still | ||
| # supported via pull_request_review_comment above. | ||
| issues: | ||
| types: [opened, assigned] | ||
| workflow_dispatch: | ||
| inputs: | ||
| pr_number: | ||
| description: 'PR number to review (optional - auto-detects from branch if not provided)' | ||
| required: false | ||
| type: number | ||
| jobs: | ||
| claude: | ||
| uses: carta/.github/.github/workflows/claude-code-assistant.yml@main | ||
|
Check failure on line 32 in .github/workflows/terraformed-claude.yml
|
||
| # secrets: inherit is GitHub's recommended pattern for reusable workflows | ||
| # The reusable workflow can only access secrets that exist in this repo | ||
| # See: https://docs.github.com/en/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow | ||
| secrets: inherit | ||