[Feat]支持 Sender 组件 content 自定义渲染,以支持类似的 speech 交互变体需求或者支持其他的content自定义渲染需求 #201
This file contains 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: 'Dependabot: Update bun.lockb' | |
on: | |
pull_request: | |
paths: | |
- "package.json" | |
permissions: | |
contents: write | |
jobs: | |
update-bun-lockb: | |
name: "Update bun.lockb" | |
if: github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: oven-sh/setup-bun@v2 | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
- run: | | |
bun install | |
git add bun.lockb | |
git config --global user.name 'dependabot[bot]' | |
git config --global user.email 'dependabot[bot]@users.noreply.github.com' | |
git commit --amend --no-edit | |
git push --force |