feat(openai): add async tool calling (#20450) #7941
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: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-v* | |
| paths: | |
| - '.changeset/**' | |
| - '.github/workflows/release.yml' | |
| workflow_dispatch: | |
| concurrency: | |
| group: 'release-${{ github.ref_name }}' | |
| cancel-in-progress: false | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| # do not attempt running in forks | |
| if: github.repository_owner == 'vercel' | |
| steps: | |
| - name: Configure Git | |
| run: | | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --global user.name "github-actions[bot]" | |
| - name: Checkout Repo | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| with: | |
| version: 10.33.4 | |
| - name: Setup Node.js 24 | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 24 | |
| - name: Install Dependencies | |
| run: pnpm i | |
| - name: Create Release Pull Request or Publish to npm | |
| id: changesets | |
| uses: changesets/action@a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d # v1 | |
| with: | |
| version: pnpm ci:version | |
| publish: pnpm ci:release | |
| setupGitUser: false | |
| # When using "github-api", all commits and tags are GPG-signed and attributed to the user or app who owns the GITHUB_TOKEN | |
| commitMode: 'github-api' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }} | |
| - name: Find release PR number | |
| if: steps.changesets.outputs.published == 'true' | |
| id: release-pr | |
| run: echo "number=$(gh api repos/${{ github.repository }}/commits/${{ github.sha }}/pulls --jq '.[0].number')" >> "$GITHUB_OUTPUT" | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Notify released PRs and issues | |
| if: steps.changesets.outputs.published == 'true' | |
| run: | | |
| cd .github/scripts/notify-released | |
| npm install --no-save | |
| node index.mjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }} | |
| PULL_REQUEST_NUMBER: ${{ steps.release-pr.outputs.number }} | |
| - name: Attach SLSA provenance to GitHub Releases | |
| if: steps.changesets.outputs.published == 'true' | |
| run: | | |
| cd .github/scripts/upload-provenance | |
| npm install --no-save | |
| node index.mjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }} |