Files
bracket/.github
Copilot 10db82f397 Add 1-month cooldown to all Dependabot update configurations (#1656)
Dependabot was configured to create PRs immediately after new versions
were published. Adding a 30-day cooldown across all ecosystems reduces
churn from short-lived or unstable releases.

## Changes

- Added `cooldown: default-days: 30` to all five package ecosystems in
`.github/dependabot.yml`:
  - `uv` (backend)
  - `npm` (frontend, docs)
  - `github-actions`
  - `docker`
  - `docker-compose`

```yaml
- package-ecosystem: "uv"
  directory: "/backend"
  schedule:
    interval: "weekly"
  cooldown:
    default-days: 30
```

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: evroon <11857441+evroon@users.noreply.github.com>
2026-04-12 14:03:57 +00:00
..