wryenmeek/knowledgebase GitHub Actions scorecardPublic 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.
Biggest wins first, each with the exact config fix.
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'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:Pre-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: trueCopilot Setup StepsPushing 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:Copilot Setup StepsAdd a `concurrency:` block keyed on branch to cancel superseded runs when devs push twice quickly.
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'Commit 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 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'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 herdPost-Merge Body-vs-Diff AuditAdd 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 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# Missing dependency cache (pip) (applies to: Jules Account Probe, Fleet Plan)
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
# Workflow runs on both push and pull_request (applies to: Pre-commit hooks, Copilot Setup Steps)
on:
push:
branches: [main]
pull_request:
# No concurrency control (applies to: Pre-commit hooks, Copilot Setup Steps, Post-Merge Body-vs-Diff Audit)
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, Pre-commit hooks)
on:
pull_request:
paths:
- 'src/**'
- 'package.json'
# 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
# Full-history clone (fetch-depth: 0) (applies to: 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: 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 →💬 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.