vllm-project/semantic-router GitHub Actions scorecardPublic GitHub Actions data, last 30 days. Updated 7/11/2026, 5:18:54 AM.
Data sourced from public GitHub. GitSpider is not affiliated with or endorsed by this repository's owners. Request removal.
Biggest wins first, each with the exact config fix.
Content ModerationAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueIssue ManagerAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueOwner NotificationAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueCreate and publish Docker imagesThe matrix expands to many parallel jobs per run, multiplying billable minutes, often more combos than you need. Trim the axes, or use `include:` to list only the combinations that matter.
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }Create and publish Docker imagesThis looks like a deploy/release workflow with `cancel-in-progress: true`, which cancels queued runs too — a queued deploy is silently dropped when a newer run arrives. Use a group-only `concurrency:` block on deploys.
concurrency:
group: ${{ github.workflow }}
# queued deploys run in order; none are droppedCreate and publish Docker imagesARM targets build under QEMU emulation on an x86 runner — often 10-100× slower than native. GitHub's `ubuntu-24.04-arm` runners are free for public repos; build the ARM leg natively and merge with a manifest step.
jobs:
build-arm:
runs-on: ubuntu-24.04-arm # native, no QEMU — free for public reposOwner NotificationNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Pre-commitNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Test And BuildNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Test And BuildRuns on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.
on:
pull_request:
paths:
- 'src/**'
- 'package.json'Test And BuildThe schedule fires at minute :00 — GitHub's peak window, where scheduled runs get delayed or skipped. Shift to any other minute for the same cadence with less contention.
on:
schedule:
- cron: '33 2 * * *' # was '0 2 * * *' — any non-:00 minute avoids the herdIssue ManagerNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Integration Test [Kubernetes]System packages install from the network on every run with no cache. Cache them (cache-apt-pkgs-action) or check whether the runner image already has the tool.
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: <your packages>
version: 1.0Content ModerationNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Content ModerationRuns on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.
on:
pull_request:
paths:
- 'src/**'
- 'package.json'Performance Testscheckout fetches the entire git history every run (`fetch-depth: 0`) and nothing in the workflow appears to read it. Remove the line — the default shallow clone is much faster on big repos. Keep it if a step genuinely needs history.
- uses: actions/checkout@v4
# fetch-depth: 0 removed — default shallow clone is enough hereIntegration Test [Dashboard]No job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Integration Test [Dashboard]Runs on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.
on:
pull_request:
paths:
- 'src/**'
- 'package.json'Publish Python Package to PyPINo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Publish Python Package to PyPIThis looks like a deploy/release workflow with `cancel-in-progress: true`, which cancels queued runs too — a queued deploy is silently dropped when a newer run arrives. Use a group-only `concurrency:` block on deploys.
concurrency:
group: ${{ github.workflow }}
# queued deploys run in order; none are droppedOperator CIARM targets build under QEMU emulation on an x86 runner — often 10-100× slower than native. GitHub's `ubuntu-24.04-arm` runners are free for public repos; build the ARM leg natively and merge with a manifest step.
jobs:
build-arm:
runs-on: ubuntu-24.04-arm # native, no QEMU — free for public reposSupply Chain Security ScanNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Supply Chain Security Scancheckout fetches the entire git history every run (`fetch-depth: 0`) and nothing in the workflow appears to read it. Remove the line — the default shallow clone is much faster on big repos. Keep it if a step genuinely needs history.
- uses: actions/checkout@v4
# fetch-depth: 0 removed — default shallow clone is enough hereCheck Linked IssueNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Check Linked IssueRuns on every push/PR with no `paths:` filter, so docs-only changes still trigger full CI. Add a `paths:` filter if that's common.
on:
pull_request:
paths:
- 'src/**'
- 'package.json'Router Learning EvalNo job sets `timeout-minutes`, so a hung step can run to GitHub's 6-hour default. Add `timeout-minutes` to each job.
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15Router Learning Eval`upload-artifact` has no `retention-days`, so artifacts keep up to 90 days (storage cost). Set e.g. `retention-days: 7`.
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7# No concurrency control — applies to: Content Moderation, Issue Manager, Owner Notification
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Large build matrix — applies to: Create and publish Docker images
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, node: 20 }
- { os: ubuntu-latest, node: 22 }
# cancel-in-progress on a deploy workflow — applies to: Create and publish Docker images, Publish Python Package to PyPI
concurrency:
group: ${{ github.workflow }}
# queued deploys run in order; none are dropped
# ARM builds emulated under QEMU — applies to: Create and publish Docker images, Operator CI
jobs:
build-arm:
runs-on: ubuntu-24.04-arm # native, no QEMU — free for public repos
# No job timeout — applies to: Owner Notification, Pre-commit, Test And Build, Issue Manager, Content Moderation, Integration Test [Dashboard], Publish Python Package to PyPI, Supply Chain Security Scan, Check Linked Issue, Router Learning Eval
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
# No path filters on triggers — applies to: Test And Build, Content Moderation, Integration Test [Dashboard], Check Linked Issue
on:
pull_request:
paths:
- 'src/**'
- 'package.json'
# Scheduled at the top of the hour — applies to: Test And Build
on:
schedule:
- cron: '33 2 * * *' # was '0 2 * * *' — any non-:00 minute avoids the herd
# System packages reinstalled every run — applies to: Integration Test [Kubernetes]
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: <your packages>
version: 1.0
# Full-history clone (fetch-depth: 0) — applies to: Performance Tests, Supply Chain Security Scan
- uses: actions/checkout@v4
# fetch-depth: 0 removed — default shallow clone is enough here
# Artifacts at default retention — applies to: Router Learning Eval
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7Each snippet is representative — merge into the named workflow files rather than pasting wholesale.
This scorecard is a one-time snapshot. Install the free GitHub App to track this repo continuously: new regressions caught as they land, trends over time, on your public and private repos. Team adds the offending commit on the PR + Slack alerts.
Install & monitor this repo →Not ready to install? Get this report by email. No spam, unsubscribe anytime.