本地跑weclone-cli server报You are trying to offload the whole model to the disk. Please use the disk_offload function instead.
#64
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: add labels to Issues | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| jobs: | |
| label_issues: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| contents: read | |
| steps: | |
| - name: get_last_run_time | |
| id: last_run | |
| run: | | |
| # 获取当前日期减去 1 天作为默认值(处理最近一天的 issues) | |
| echo "date=$(date -d '1 day ago' -u +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT | |
| - name: RegEx Issue Labeler | |
| uses: github/issue-labeler@v3.4 | |
| with: | |
| include-title: 1 | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: .github/issue-labeler.yml | |
| enable-versioned-regex: 0 | |
| not-before: ${{ steps.last_run.outputs.date }} |