Remove skill content max truncation (#4639) #141
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: Agents Desktop Canary | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'packages/agents-desktop/**' | |
| - 'packages/agents-server-ui/**' | |
| - 'packages/agents/**' | |
| - 'packages/agents-mcp/**' | |
| - 'packages/agents-runtime/**' | |
| - '.github/workflows/agents_desktop_*.yml' | |
| - 'scripts/ci/desktop-affected.mjs' | |
| - '.npmrc' | |
| - '.tool-versions' | |
| - 'package.json' | |
| - 'patches/**' | |
| - 'pnpm-lock.yaml' | |
| - 'pnpm-workspace.yaml' | |
| - 'tsconfig.base.json' | |
| - 'tsconfig.build.json' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| jobs: | |
| detect: | |
| name: Detect desktop impact | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should_build: ${{ steps.detect.outputs.should_build }} | |
| reason: ${{ steps.detect.outputs.reason }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.tool-versions' | |
| - name: Detect desktop impact | |
| id: detect | |
| env: | |
| BASE_SHA: ${{ github.event.before }} | |
| run: node scripts/ci/desktop-affected.mjs | |
| build-and-publish: | |
| needs: detect | |
| if: ${{ needs.detect.outputs.should_build == 'true' }} | |
| uses: ./.github/workflows/agents_desktop_build.yml | |
| secrets: inherit | |
| with: | |
| channel: canary | |
| version: canary-${{ github.run_number }}-${{ github.sha }} | |
| git_ref: ${{ github.sha }} | |
| publish: true | |
| sign: false | |
| release_tag: agents-desktop-canary | |
| release_name: Electric Agents Desktop Canary |