Skip to content

invoke_expression should auto-execute pipeline after console start/switch instead of returning "Pipeline NOT executed" #8

invoke_expression should auto-execute pipeline after console start/switch instead of returning "Pipeline NOT executed"

invoke_expression should auto-execute pipeline after console start/switch instead of returning "Pipeline NOT executed" #8

Workflow file for this run

name: Claude Code
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
issues:
types: [opened, assigned]
permissions:
contents: write
pull-requests: write
issues: write
jobs:
claude:
if: |
(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 == 'issues' && github.event.action == 'assigned')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: anthropics/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
claude_args: "--model claude-sonnet-4-5-20250929 --max-turns 10"