fix(streams): scope s2 access token to environment and fix streams v1 appends #3747
Workflow file for this run
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: 🤖 PR Checks | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths-ignore: | |
| - "docs/**" | |
| - ".changeset/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| typecheck: | |
| uses: ./.github/workflows/typecheck.yml | |
| secrets: inherit | |
| units: | |
| uses: ./.github/workflows/unit-tests.yml | |
| secrets: inherit | |
| e2e: | |
| uses: ./.github/workflows/e2e.yml | |
| with: | |
| package: cli-v3 | |
| secrets: inherit |