feat: streaming support in m serve OpenAI API server #633
Workflow file for this run
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
| # This workflow uses pull_request_target, which grants write access to | |
| # the repo even for PRs from forks. This is safe ONLY because it never checks | |
| # out or executes code from the PR branch. Do NOT add: | |
| # - actions/checkout (of the PR head ref) | |
| # - run: steps that reference PR-controlled files | |
| # - any step that executes code from the pull request | |
| # Doing so would let a malicious fork run arbitrary code with write permissions. | |
| name: "Label PR by conventional commit prefix" | |
| on: | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] | |
| types: [opened, edited, synchronize] | |
| merge_group: | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Apply label based on PR title prefix | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7 | |
| with: | |
| script: | | |
| const title = context.payload.pull_request.title; | |
| const labelMap = { | |
| 'feat': 'enhancement', | |
| 'fix': 'bug', | |
| 'docs': 'documentation', | |
| 'test': 'testing', | |
| 'perf': 'enhancement', | |
| 'refactor': 'enhancement', | |
| 'ci': 'integrations', | |
| 'chore': null, | |
| 'build': null, | |
| 'style': null, | |
| 'revert': null, | |
| 'release': null, | |
| }; | |
| const match = title.match(/^(\w+)[\(!\:]/); | |
| if (!match) { core.setFailed(`PR title "${title}" does not match conventional commit format.`); return; } | |
| const prefix = match[1]; | |
| const label = labelMap[prefix]; | |
| if (label === undefined) { core.setFailed(`PR title prefix "${prefix}" is not a recognized conventional commit type.`); return; } | |
| if (!label) return; | |
| await github.rest.issues.addLabels({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.payload.pull_request.number, | |
| labels: [label], | |
| }); | |
| - name: Skip label in merge queue | |
| if: github.event_name == 'merge_group' | |
| run: echo "PR title already validated at PR open/edit time" | |