Fix: Facilitator: Missing validation for facilitatorFee <= value causes failed transactions #133
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
| name: Holon Trigger | |
| on: | |
| issue_comment: | |
| types: [created] | |
| issues: | |
| types: [labeled, assigned] | |
| pull_request: | |
| types: [labeled] | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| concurrency: | |
| group: holon-${{ github.event_name }}-${{ github.event.issue.number || github.event.pull_request.number }}-${{ github.actor }} | |
| cancel-in-progress: true | |
| jobs: | |
| holon: | |
| name: Run Holon (via holon-solve) | |
| uses: holon-run/holon/.github/workflows/holon-solve.yml@main | |
| with: | |
| # Keep config minimal; holon-solve derives issue_number/comment_body/mode/output_dir from the event. | |
| log_level: 'debug' | |
| build_from_source: true | |
| issue_number: ${{ github.event.issue.number || github.event.pull_request.number }} | |
| comment_id: ${{ github.event.comment.id || 0 }} | |
| secrets: | |
| anthropic_auth_token: ${{ secrets.ANTHROPIC_AUTH_TOKEN }} | |
| anthropic_base_url: ${{ secrets.ANTHROPIC_BASE_URL }} |