[Bug]: MCP server on Cloud rejects its own session ids — sessions are per-process, break behind multiple replicas #94394
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
| # If someone with write access uses an approved slash command on a pull request, | |
| # emit a repository_dispatch event from the trusted GitHub App. | |
| name: Ok To Test | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| ok-to-test: | |
| runs-on: ubuntu-latest | |
| # Only run for PRs, not issue comments | |
| if: | | |
| github.event.issue.pull_request | |
| steps: | |
| - name: Generate token | |
| id: generate_token | |
| uses: tibdex/github-app-token@v1 | |
| with: | |
| app_id: ${{ secrets.APPSMITH_INTEGRATION_TESTING_ID }} | |
| private_key: ${{ secrets.APPSMITH_INTEGRATION_TESTING_KEY }} | |
| - name: Slash Command Dispatch | |
| uses: peter-evans/slash-command-dispatch@v3 | |
| env: | |
| TOKEN: ${{ steps.generate_token.outputs.token }} | |
| with: | |
| token: ${{ env.TOKEN }} # GitHub App installation access token | |
| reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-type: pull-request | |
| commands: | | |
| approve-ci | |
| ok-to-test | |
| ci-test-limit | |
| build-deploy-preview | |
| ci-test-limit-count | |
| test-pw | |
| permission: write |