wryenmeek/knowledgebase GitHub Actions scorecardPublic GitHub Actions data, last 30 days. Updated 7/11/2026, 5:16:29 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.
Pre-commit hooksPushing 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:Jules Account ProbeSet `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'Jules Account ProbeAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: truePre-commit hooksAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueSweep Stale Bot BranchesFails 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.
Fleet Sequential MergeConcurrency group has no `cancel-in-progress: true`, so superseded runs queue instead of cancelling. Add it to supersede stale runs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueFleet PlanSet `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'GitHub Customizations FreshnessConcurrency group has no `cancel-in-progress: true`, so superseded runs queue instead of cancelling. Add it to supersede stale runs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueCI-2 Analyst Read-Only DiagnosticsRuns 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'CI-2 Analyst Read-Only Diagnosticscheckout 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 hereCommit Scope 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'Fleet DispatchConcurrency group has no `cancel-in-progress: true`, so superseded runs queue instead of cancelling. Add it to supersede stale runs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueFleet DispatchRuns 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'Fleet PlanThe 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: '23 6 * * *' # was '0 6 * * *' — any non-:00 minute avoids the herdFleet PlanThe 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-latestFleet Submit PRsThe 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: '8 4 * * *' # was '0 4 * * *' — any non-:00 minute avoids the herdFleet Submit PRsThe 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-latestGitHub Customizations FreshnessThe 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: '13 4 * * 1' # was '0 4 * * 1' — any non-:00 minute avoids the herdJules Account ProbeThe 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: '27 0,9,18 * * *' # was '0 0,9,18 * * *' — any non-:00 minute avoids the herdPre-commit hooksRuns 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'Pre-commit hookscheckout 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 hereSweep Stale Bot BranchesThe 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: '38 2 * * *' # was '0 2 * * *' — any non-:00 minute avoids the herdSweep Stale Bot BranchesThe 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-latestSweep Stale Bot Branchescheckout 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 here# Workflow runs on both push and pull_request — applies to: Pre-commit hooks
on:
push:
branches: [main]
pull_request:
# Missing dependency cache (pip) — applies to: Jules Account Probe, Fleet Plan
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
# No concurrency control — applies to: Jules Account Probe, Pre-commit hooks
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Concurrency without cancel-in-progress — applies to: Fleet Sequential Merge, GitHub Customizations Freshness, Fleet Dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# No path filters on triggers — applies to: CI-2 Analyst Read-Only Diagnostics, Commit Scope Check, Fleet Dispatch, Pre-commit hooks
on:
pull_request:
paths:
- 'src/**'
- 'package.json'
# Full-history clone (fetch-depth: 0) — applies to: CI-2 Analyst Read-Only Diagnostics, Pre-commit hooks, Sweep Stale Bot Branches
- uses: actions/checkout@v4
# fetch-depth: 0 removed — default shallow clone is enough here
# Scheduled at the top of the hour — applies to: Fleet Plan
on:
schedule:
- cron: '23 6 * * *' # was '0 6 * * *' — any non-:00 minute avoids the herd
# Scheduled workflow runs in forks — applies to: Fleet Plan, Fleet Submit PRs, Sweep Stale Bot Branches
jobs:
nightly:
if: github.repository == 'owner/repo'
runs-on: ubuntu-latest
# Scheduled at the top of the hour — applies to: Fleet Submit PRs
on:
schedule:
- cron: '8 4 * * *' # was '0 4 * * *' — any non-:00 minute avoids the herd
# Scheduled at the top of the hour — applies to: GitHub Customizations Freshness
on:
schedule:
- cron: '13 4 * * 1' # was '0 4 * * 1' — any non-:00 minute avoids the herd
# Scheduled at the top of the hour — applies to: Jules Account Probe
on:
schedule:
- cron: '27 0,9,18 * * *' # was '0 0,9,18 * * *' — any non-:00 minute avoids the herd
# Scheduled at the top of the hour — applies to: Sweep Stale Bot Branches
on:
schedule:
- cron: '38 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.