Skip to content

feat(hygon): support INT4 inference for Qwen3.6 and GLM-5.2 #1106

feat(hygon): support INT4 inference for Qwen3.6 and GLM-5.2

feat(hygon): support INT4 inference for Qwen3.6 and GLM-5.2 #1106

Workflow file for this run

# Copyright 2026 FlagOS Contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "Pull Request Labeler"
on:
pull_request_target:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
pull-requests: write
jobs:
label:
# Skip: fork-internal PRs, draft PRs, PRs with WIP/wip in title
if: |
github.repository == 'flagos-ai/vllm-plugin-FL' &&
!github.event.pull_request.draft &&
!contains(github.event.pull_request.title, 'WIP') &&
!contains(github.event.pull_request.title, 'wip')
runs-on: ubuntu-latest
steps:
- name: Checkout (attempt 1)
id: checkout1
uses: actions/checkout@v4
continue-on-error: true
- name: Checkout (attempt 2)
id: checkout2
if: steps.checkout1.outcome == 'failure'
uses: actions/checkout@v4
continue-on-error: true
- name: Checkout (attempt 3)
if: steps.checkout2.outcome == 'failure'
uses: actions/checkout@v4
- name: Apply labels
uses: actions/labeler@v5
continue-on-error: true # Don't fail if config not yet on main branch
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true