Skip to content

BYOS Hanami webhook format incompatible with current Terminus — data (base64) parameter no longer accepted #166

BYOS Hanami webhook format incompatible with current Terminus — data (base64) parameter no longer accepted

BYOS Hanami webhook format incompatible with current Terminus — data (base64) parameter no longer accepted #166

Workflow file for this run

name: Claude Code
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
issues:
types: [opened]
jobs:
claude:
if: |
(github.event_name == 'issues') ||
(github.actor == 'ikraamg' && (
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude'))
))
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
issues: read
id-token: write
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run Claude Code
id: claude
uses: anthropics/claude-code-action@v1
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
prompt: ${{ github.event_name == 'issues' && 'Investigate this issue. Review the codebase to understand if this is a valid issue, identify relevant files, and suggest potential approaches to address it. Be concise.' || '' }}
additional_permissions: |
actions: read