'charmap' codec can't encode character '\U0001f680' in position 4: character maps to <undefined> #3489
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: Strands Command Handler | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_review_comment: | |
| types: [created] | |
| workflow_dispatch: | |
| inputs: | |
| issue_id: | |
| description: Issue ID to process (can be issue or PR number) | |
| required: true | |
| type: string | |
| command: | |
| description: Strands command to execute | |
| required: false | |
| type: string | |
| default: '' | |
| session_id: | |
| description: Optional session ID to use | |
| required: false | |
| type: string | |
| default: '' | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| call: | |
| uses: aws/agentcore-devx-devtools/.github/workflows/reusable-strands-command.yml@458c0a684af0f9e3a013ec05cd23851def4f9cab | |
| with: | |
| runner: codebuild | |
| issue_id: ${{ inputs.issue_id || format('{0}', github.event.issue.number || github.event.pull_request.number) }} | |
| command: ${{ inputs.command || '' }} | |
| session_id: ${{ inputs.session_id || '' }} | |
| secrets: inherit |