feat(deps): bump @apm-js-collab/code-transformer from 0.8.2 to 0.9.0 #3582
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: integration-tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled] | |
| jobs: | |
| open-pr: | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'run-integration-tests') }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout parent repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: braintrustdata/braintrust | |
| path: braintrust | |
| token: ${{ secrets.CROSS_REPO_TOKEN }} | |
| fetch-depth: 0 | |
| - name: Configure Git in parent repository | |
| run: | | |
| cd braintrust | |
| git config user.name "GitHub Actions Bot" | |
| git config user.email "[email protected]" | |
| - name: Initialize and update SDK submodule | |
| run: | | |
| cd braintrust | |
| git submodule init | |
| git submodule update --init --recursive | |
| cd sdk | |
| git remote set-url origin https://github.com/braintrustdata/braintrust-sdk-javascript.git | |
| git fetch origin | |
| git checkout ${{ github.event.pull_request.head.sha }} | |
| - name: Create integration test PR | |
| run: ./braintrust/sdk/scripts/create-integration-test-pr.sh | |
| env: | |
| GH_TOKEN: ${{ secrets.CROSS_REPO_TOKEN }} | |
| BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
| COMMIT_HASH: ${{ github.event.pull_request.head.sha }} | |
| PARENT_REPO_PATH: braintrust |