[kiro-cli --tui] Delete key acts as Backspace #1592
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: Issue Triage | |
| on: | |
| issues: | |
| types: [opened] | |
| workflow_dispatch: | |
| inputs: | |
| issue_number: | |
| description: 'Issue number to triage' | |
| required: true | |
| type: number | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| triage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install dependencies | |
| working-directory: scripts | |
| run: npm install | |
| - name: Build TypeScript | |
| working-directory: scripts | |
| run: npm run build | |
| - name: Run issue triage | |
| working-directory: scripts | |
| env: | |
| AWS_REGION: ${{ secrets.AWS_REGION || 'us-east-1' }} | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number || inputs.issue_number }} | |
| ISSUE_TITLE: ${{ github.event.issue.title }} | |
| ISSUE_BODY: ${{ github.event.issue.body }} | |
| REPOSITORY_OWNER: ${{ github.repository_owner }} | |
| REPOSITORY_NAME: ${{ github.event.repository.name }} | |
| run: node dist/triage_issue.js | |
| - name: Create workflow summary | |
| if: always() | |
| env: | |
| ISSUE_NUMBER: ${{ github.event.issue.number || inputs.issue_number }} | |
| ISSUE_TITLE: ${{ github.event.issue.title }} | |
| run: | | |
| echo "## Issue Triage Summary" >> "$GITHUB_STEP_SUMMARY" | |
| echo "Issue #$ISSUE_NUMBER: $ISSUE_TITLE" >> "$GITHUB_STEP_SUMMARY" | |
| echo "Status: ${{ job.status }}" >> "$GITHUB_STEP_SUMMARY" |