[Usage]: minicpm分支推理多图和视频的时候,跑完一帧会报这个warring就不继续推理了,也没有最终的结果输出。 #17
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: Add Ready Label on Ready Comment | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
add-ready-label: | |
runs-on: ubuntu-latest | |
if: github.event.issue.pull_request && contains(github.event.comment.body, '/ready') | |
steps: | |
- name: Add label | |
uses: actions/github-script@v5 | |
with: | |
script: | | |
github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
labels: ['ready'] | |
}) | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |