fix:自定义渲染函数中的组件,如果页面没有引入,预览页面和出码页面会存在问题 #1572
Workflow file for this run
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: Pull Request Auto Labeler | |
on: | |
pull_request_target: | |
types: [opened, edited] | |
permissions: | |
# Setting up permissions in the workflow to limit the scope of what it can do. Optional! | |
contents: read # the config file | |
pull-requests: write # for labeling pull requests (on: pull_request_target or on: pull_request) | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fuxingloh/multi-labeler@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} # optional, default to '${{ github.token }}' | |
config-path: .github/auto-labeler.yml # optional, default to '.github/labeler.yml' |