Skip to content

Change background to yellow — more playful vibe #8

Change background to yellow — more playful vibe

Change background to yellow — more playful vibe #8

Workflow file for this run

name: Fix issue with Claude
on:
issues:
types: [labeled]
issue_comment:
types: [created]
concurrency:
group: fix-on-issue-${{ github.event.issue.number }}
cancel-in-progress: true
jobs:
fix:
# Triggers:
# - label `claude-fix` added to an issue
# - comment containing `/claude-fix` on an issue (ignore PR comments)
if: |
(github.event_name == 'issues' && github.event.label.name == 'claude-fix') ||
(github.event_name == 'issue_comment' && !github.event.issue.pull_request && contains(github.event.comment.body, '/claude-fix'))
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: read
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/fix-on-issue
with:
boxd-api-key: ${{ secrets.BOXD_API_KEY }}
boxd-api-url: https://boxd-stg.sh
golden-vm: snake-game-production
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}