open-edge-platform/edge-ai-suites GitHub Actions scorecardPublic GitHub Actions data, last 30 days. Updated 7/11/2026, 5:15:06 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.
[Smart Traffic Intersection Agent] SDLe ScansFails or times out on nearly all recent runs, burning minutes to produce only red, and an always-red workflow usually gets ignored. Fix it, or disable the trigger until it's ready.
Documentation CheckAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueZizmor scanAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true[Smart Traffic Intersection Agent] SDLe ScansSet `cache: 'pip'` on your `actions/setup-python` step, or add an `actions/cache@v4` step keyed on your requirements/lock file.
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'[Smart NVR] SDLe ScansSet `cache: 'pip'` on your `actions/setup-python` step, or add an `actions/cache@v4` step keyed on your requirements/lock file.
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'[industrial-edge-insights-vision] PR workflowAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true[Robotics] CIPushing to a branch and opening a PR triggers two runs. Pick one (usually `pull_request`) and exclude branch pushes for non-default branches.
on:
push:
branches: [main]
pull_request:[metro-vision-ai-app-recipe] PR workflowAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true[Smart Traffic Intersection Agent] SDLe ScansNo 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: 15[Smart Traffic Intersection Agent] SDLe Scans`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[Smart Traffic Intersection Agent] SDLe ScansThe Docker build has no layer cache, so every run re-executes every layer from scratch. Add `cache-from: type=gha` / `cache-to: type=gha,mode=max` to the build step.
- uses: docker/build-push-action@v6
with:
cache-from: type=gha
cache-to: type=gha,mode=max[Smart Traffic Intersection Agent] SDLe ScansUses a larger hosted runner, which bills even on public repos (only standard runners are free). Keep big runners for jobs that measurably need the cores.
jobs:
lint:
runs-on: ubuntu-latest # standard runner — free on public reposDocumentation CheckNo 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: 15Documentation CheckRuns 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'Education-Suite-CINo 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: 15Education-Suite-CI`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[FedAero] PackageNo 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: 15[FedAero] Package`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[Industrial Edge Insights Time Series and Multimodal] PR workflowNo 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: 15[Industrial Edge Insights Multimodal and Time Series] Functional TestsNo 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: 15[Industrial Edge Insights Multimodal and Time Series] Functional Tests`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[Industrial Edge Insights Multimodal and Time Series] Functional TestsThe 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: '48 14 * * *' # was '0 14 * * *' — any non-:00 minute avoids the herd[Industrial Edge Insights Multimodal and Time Series] Functional TestsThe schedule has no repository guard, so forks that enable Actions inherit the cron and burn their own minutes. Gate the job with `if: github.repository == 'owner/repo'`.
jobs:
nightly:
if: github.repository == 'owner/repo'
runs-on: ubuntu-latest[Industrial Edge Insights Multimodal and Time Series] Functional TestsSystem 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.0[Smart NVR] SDLe ScansNo 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: 15[Smart NVR] SDLe Scans`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[Smart NVR] SDLe ScansThe Docker build has no layer cache, so every run re-executes every layer from scratch. Add `cache-from: type=gha` / `cache-to: type=gha,mode=max` to the build step.
- uses: docker/build-push-action@v6
with:
cache-from: type=gha
cache-to: type=gha,mode=max[metro-vision-ai-app-recipe] PR workflowNo 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: 15[metro-vision-ai-app-recipe] PR workflow`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[metro-vision-ai-app-recipe] PR workflowSystem 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.0[Robotics] CINo 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: 15[industrial-edge-insights-vision] PR workflowNo 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: 15[industrial-edge-insights-vision] PR workflow`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[industrial-edge-insights-vision] PR workflowSystem 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.0Zizmor 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: 15Zizmor scanRuns 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'Zizmor scanThe 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: '46 2 * * *' # was '0 2 * * *' — any non-:00 minute avoids the herdZizmor scanThe schedule has no repository guard, so forks that enable Actions inherit the cron and burn their own minutes. Gate the job with `if: github.repository == 'owner/repo'`.
jobs:
nightly:
if: github.repository == 'owner/repo'
runs-on: ubuntu-latest# No concurrency control — applies to: Documentation Check, Zizmor scan, [industrial-edge-insights-vision] PR workflow, [metro-vision-ai-app-recipe] PR workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Missing dependency cache (pip) — applies to: [Smart Traffic Intersection Agent] SDLe Scans, [Smart NVR] SDLe Scans
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
# Workflow runs on both push and pull_request — applies to: [Robotics] CI
on:
push:
branches: [main]
pull_request:
# No job timeout — applies to: [Smart Traffic Intersection Agent] SDLe Scans, Documentation Check, Education-Suite-CI, [FedAero] Package, [Industrial Edge Insights Time Series and Multimodal] PR workflow, [Industrial Edge Insights Multimodal and Time Series] Functional Tests, [Smart NVR] SDLe Scans, [metro-vision-ai-app-recipe] PR workflow, [Robotics] CI, [industrial-edge-insights-vision] PR workflow, Zizmor scan
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
# Artifacts at default retention — applies to: [Smart Traffic Intersection Agent] SDLe Scans, Education-Suite-CI, [FedAero] Package, [Industrial Edge Insights Multimodal and Time Series] Functional Tests, [Smart NVR] SDLe Scans, [metro-vision-ai-app-recipe] PR workflow, [industrial-edge-insights-vision] PR workflow
- uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 7
# Docker build without layer cache — applies to: [Smart Traffic Intersection Agent] SDLe Scans, [Smart NVR] SDLe Scans
- uses: docker/build-push-action@v6
with:
cache-from: type=gha
cache-to: type=gha,mode=max
# Larger hosted runner — applies to: [Smart Traffic Intersection Agent] SDLe Scans
jobs:
lint:
runs-on: ubuntu-latest # standard runner — free on public repos
# No path filters on triggers — applies to: Documentation Check, Zizmor scan
on:
pull_request:
paths:
- 'src/**'
- 'package.json'
# Scheduled at the top of the hour — applies to: [Industrial Edge Insights Multimodal and Time Series] Functional Tests
on:
schedule:
- cron: '48 14 * * *' # was '0 14 * * *' — any non-:00 minute avoids the herd
# Scheduled workflow runs in forks — applies to: [Industrial Edge Insights Multimodal and Time Series] Functional Tests, Zizmor scan
jobs:
nightly:
if: github.repository == 'owner/repo'
runs-on: ubuntu-latest
# System packages reinstalled every run — applies to: [Industrial Edge Insights Multimodal and Time Series] Functional Tests, [metro-vision-ai-app-recipe] PR workflow, [industrial-edge-insights-vision] PR workflow
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: <your packages>
version: 1.0
# Scheduled at the top of the hour — applies to: Zizmor scan
on:
schedule:
- cron: '46 2 * * *' # was '0 2 * * *' — any non-:00 minute avoids the herdEach 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.