Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Bug Report: Embedding Model Crashes and Performance Degradation in LM Studio v0.3.34#427

Bug Report: Embedding Model Crashes and Performance Degradation in LM Studio v0.3.34

Bug Report: Embedding Model Crashes and Performance Degradation in LM Studio v0.3.34 #427

Workflow file for this run

name:"CLA Assistant"
# NOTE: This workflow runs against PR *target* branches, not against the source branches.
# This ensures modified code cannot be executed with the workflow's permissions.
# It's still easier to misuse than most potential triggers, hence the zizmor warning.
on:
issue_comment:
types:[created]
pull_request_target:# zizmor: ignore[dangerous-triggers]
types:[opened, closed, synchronize, labeled]# Added "labeled" event to check for label changes
workflow_dispatch:# Allow manual triggering of the workflow
permissions:
actions:write
contents:read# Signatures are stored in a dedicated repository
pull-requests:write
statuses:write
checks:write
jobs:
CLAAssistant:
runs-on:ubuntu-latest
steps:
-name:"CLA Assistant"
if:(github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
# https://github.com/contributor-assistant/github-action/releases/tag/v2.6.1
uses:contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08
env:
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN:${{ secrets.CLA_PAT }}
with:
path-to-signatures:'signatures/version1/cla.json'
path-to-document:'https://lmstudio.ai/opensource/cla'
remote-organization-name:lmstudio-ai
remote-repository-name:cla-signatures
branch:'main'
allowlist:yagil,ryan-the-crayon,azisislm,mattjcly,neilmehta24,ncoghlan
-name:"Label PR as CLA Signed"
if:success()
run:|
if [[ "${{ github.event_name }}" == "pull_request_target" ]]; then
PR_NUMBER="${{ github.event.pull_request.number }}"
elif [[ "${{ github.event_name }}" == "issue_comment" ]]; then
PR_NUMBER="${{ github.event.issue.number }}"
fi
ENDPOINT="https://api.github.com/repos/${{ github.repository }}/issues/$PR_NUMBER/labels"
curl -L -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
-d '{"labels":["CLA signed"]}' \
$ENDPOINT
curl -L -X DELETE \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
"https://api.github.com/repos/${{ github.repository }}/issues/$PR_NUMBER/labels/Request%20CLA" ||true

[8]ページ先頭

©2009-2025 Movatter.jp