Skip to content

chore: add shared ltx workflow callers [DOPS-392] #5

chore: add shared ltx workflow callers [DOPS-392]

chore: add shared ltx workflow callers [DOPS-392] #5

Workflow file for this run

---
# Thin caller — logic lives in LocumTenens-com/ltx claude-interactive.yml.
name: Claude Code
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
pull_request_review:
types: [submitted]
concurrency:
group: claude-${{ github.event.issue.number || github.event.pull_request.number || github.run_id }}
cancel-in-progress: false
jobs:
claude:
if: |
!endsWith(github.actor, '[bot]') &&
(
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude'))
)
uses: LocumTenens-com/ltx/.github/workflows/claude-interactive.yml@main

Check failure on line 26 in .github/workflows/claude.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/claude.yml

Invalid workflow file

error parsing called workflow ".github/workflows/claude.yml" -> "LocumTenens-com/ltx/.github/workflows/claude-interactive.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
pr-number: ${{ github.event.issue.number || github.event.pull_request.number || '' }}
secrets:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}