DDMAL/Rodan GitHub Actions scorecard

Public GitHub Actions data, last 30 days. Updated .

Data sourced from public GitHub. GitSpider is not affiliated with or endorsed by this repository's owners. Request removal.

53 min/mo
recoverable (~22% of CI time) · across 5 patterns
Estimated from wall-clock time · public repos pay $0, $ = private-repo equivalent
See all 5 fixes, each with the exact YAML ↓
0.0%
failure rate, 30d · Top 25%
🕸️ Reliability: Top 25%Failure rate beats ~75% of the 16 repos GitSpider watches.

🏆 You're Top 25%. Show it off in your README:

[![GitSpider](https://gitspider.com/badge/DDMAL/Rodan.svg)](https://gitspider.com/scan/DDMAL/Rodan)
Since : findings 9 → 5 · recoverable ~178 → ~53 min/mo (detector updated between scans, so part of this change is ours, not the repo's)
7 workflows · 31 runs (1/day) · 237 CI-min (wall-clock) · ≈$1 at private-repo rates (30d)

Where the minutes go (30d)

Build, push, and deploy images~175 min · 13 runs
CI test~57 min · 9 runs
Create Release checklist~4 min · 9 runs
or track on every push →

Waste detected

Biggest wins first, each with the exact config fix.

Docker build without layer cache · Build, push, and deploy images

~53 min/mo

The 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

Full guide: how to fix this →

Also found: 4 more config fixes with negligible recoverable minutes: timeouts, retention, path filters

No job timeout · Build, push, and deploy images

~0 min/mo

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: 15

Full guide: how to fix this →

cancel-in-progress on a deploy workflow · Build, push, and deploy images

~0 min/mo

This looks like a deploy/release workflow with `cancel-in-progress: true`, which cancels queued runs too, so 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 dropped

Full guide: how to fix this →

No job timeout · CI test

~0 min/mo

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: 15

Full guide: how to fix this →

No job timeout · Create Release checklist

~0 min/mo

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: 15

Full guide: how to fix this →

Copy every fix as one block (3 snippets, annotated per workflow)
# Docker build without layer cache (applies to: Build, push, and deploy images)
- uses: docker/build-push-action@v6
  with:
    cache-from: type=gha
    cache-to: type=gha,mode=max

# No job timeout (applies to: Build, push, and deploy images, CI test, Create Release checklist)
jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 15

# cancel-in-progress on a deploy workflow (applies to: Build, push, and deploy images)
concurrency:
  group: ${{ github.workflow }}
  # queued deploys run in order; none are dropped

Each snippet is representative. Merge into the named workflow files rather than pasting wholesale.

Want this on every push?

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 →

💬 On Team, this same analysis posts automatically to every PR: the regression, and the exact commit that caused it, right where your team already looks. See plans →

Not ready to install? Get this report by email. No spam, unsubscribe anytime.

Share this scorecard: https://gitspider.com/scan/DDMAL/Rodan