bugfix: insert into stb subquery vnode is closed error #3051
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: Label PR by Team | |
| description: Label PR based on team membership | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| jobs: | |
| label-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Generate GitHub App Token | |
| id: app-token | |
| uses: tibdex/github-app-token@v1 | |
| with: | |
| app_id: ${{ vars.TAOSDATA_BOT_ID }} | |
| private_key: ${{ secrets.TAOSDATA_BOT_KEY }} | |
| - name: Add PR Labels | |
| uses: taosdata/.github/.github/actions/add-pr-labels@main | |
| with: | |
| github-token: ${{ steps.app-token.outputs.token }} | |