Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renovate recommendation updates #64

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,14 @@
],
"extends": [
"config:base",
":dependencyDashboard",
"schedule:earlyMondays",
":rebaseStalePrs"
],
"schedule": [
"before 3am every weekday"
],
"enabledManagers": [
"github-actions",
"npm"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "Minor Packages",
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
Expand Down
19 changes: 8 additions & 11 deletions src/docs/managing-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,19 @@ If you are unable to leverage GitHub hosting, or prefer to self-host your instan

While Renovate offers numerous customizations, a few key options provide immediate value to project maintainers without requiring too much tweaking:

- [Scheduling](https://docs.renovatebot.com/key-concepts/scheduling/):
- [Scheduling Presets](https://docs.renovatebot.com/presets-schedule/):

```js
"schedule": [
"before 3am every weekday" // Runs daily before 3:00 AM UTC
"extends": [
"schedule:earlyMondays"
]
```

- [Package Managers](https://docs.renovatebot.com/modules/manager/):
- [Setting more granular Scheduling](https://docs.renovatebot.com/key-concepts/scheduling/):

```js
"enabledManagers": [ // Manages packages for Docker, GitHub, Node
"dockerfile",
"docker-compose",
"github-actions",
"npm"
"schedule": [
"before 3am every weekday" // Runs daily before 3:00 AM UTC
]
```

Expand Down Expand Up @@ -146,6 +143,7 @@ While Renovate offers numerous customizations, a few key options provide immedia
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "Minor Packages",
"matchCurrentVersion": "!/^0/", // exclude automerging dependencies which are pre-1.0.0
"automerge": true
},
]
Expand All @@ -154,9 +152,8 @@ While Renovate offers numerous customizations, a few key options provide immedia
- [Config Presets](https://docs.renovatebot.com/getting-started/use-cases/#configuration-presets):

```js
"extends": [ // Extends base config, enables dashboard, rebases PRs
"extends": [ // Extends base config, rebases PRs
"config:base",
":dependencyDashboard",
":rebaseStalePrs"
]
```
Expand Down